mirror of
https://github.com/neocities/neocities.git
synced 2025-07-25 11:58:28 +02:00
site change and file recording, better share support
This commit is contained in:
parent
9275b92d9f
commit
da9d1e4eb3
15 changed files with 125 additions and 65 deletions
14
migrations/032_add_site_change_files.rb
Normal file
14
migrations/032_add_site_change_files.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue