1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-12 09:48:31 +02:00
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