mirror of
https://github.com/neocities/neocities.git
synced 2025-06-25 21:54:41 +02:00
continued work on site profile, tag adding
This commit is contained in:
parent
264e4becea
commit
d9b33238e9
10 changed files with 110 additions and 14 deletions
11
migrations/030_fix_event_timestamp.rb
Normal file
11
migrations/030_fix_event_timestamp.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
Sequel.migration do
|
||||
up {
|
||||
DB.drop_column :events, :created_at
|
||||
DB.add_column :events, :created_at, :timestamp, index: true
|
||||
}
|
||||
|
||||
down {
|
||||
DB.drop_column :events, :created_at
|
||||
DB.add_column :events, :created_at, :integer, index: true
|
||||
}
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue