neocities/migrations/084_dashboard_accessed.rb
2016-02-08 00:54:08 -08:00

9 lines
168 B
Ruby

Sequel.migration do
up {
DB.add_column :sites, :dashboard_accessed, :boolean, default: false
}
down {
DB.drop_column :sites, :dashboard_accessed
}
end