Column Modifiers
comment
schema.create( "users", function( table ) {
table.integer( "age" ).comment( "Do not lie about your age" );
} );CREATE TABLE `users` (
`age` INTEGER NOT NULL COMMENT `Do not lie about your age`
)default
nullable
primaryKey
references
unsigned
unique
Last updated
Was this helpful?