femslash-city/migrations/084_dashboard_accessed.rb

10 lines
168 B
Ruby
Raw Permalink Normal View History

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