❌ Eugene lint report
Script name: examples/W13/bad/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 E123
to the SQL statement. - By passing
--ignore E123
on the command line.
❌ Statement number 1
-- 1.sql
create type document_type
as enum ('invoice', 'receipt', 'other')
Triggered rules
W13
: Creating an enum
Created enum document_type
. Enumerated types are not recommended for use in new applications. Consider using a foreign key to a lookup table instead..
✅ Statement number 2
create table document (
id int generated always as identity
primary key,
type document_type
)