mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 09:12:35 +02:00
14 lines
242 B
Ruby
14 lines
242 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.create_table! :site_change_files do
|
|
primary_key :id
|
|
Integer :site_change_id
|
|
String :filename
|
|
DateTime :created_at
|
|
end
|
|
}
|
|
|
|
down {
|
|
DB.drop_table :site_change_files
|
|
}
|
|
end
|