Given that I have the following migration:
Sequel.migration do up do alter_table :users do add_column :is_admin, :default => false end
Then the sequel does not automatically reload the table structure (see the comment on the line).
I use this ugly hack to get around it:
Is there a better way?
iblue source share