✅ Eugene lint report
Script name: examples/W13/good/1.sql
This is a human readable SQL lint report generated by eugene. Keep in mind that lint rules can be ignored in the following two ways:
- By appending comment directives like 
-- eugene: ignore E123to the SQL statement. - By passing 
--ignore E123on the command line. 
✅ Statement number 1
-- 1.sql
create table document_type(
    type_name text primary key
)
✅ Statement number 2
insert into document_type
  values('invoice'), ('receipt'), ('other')
✅ Statement number 3
create table document (
    id int generated always as identity
        primary key,
    type text
        references document_type(type_name)
)