mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
15 lines
263 B
Ruby
15 lines
263 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.create_table! :comment_likes do
|
|
primary_key :id
|
|
Integer :comment_id
|
|
Integer :site_id
|
|
Integer :actioning_site_id
|
|
DateTime :created_at
|
|
end
|
|
}
|
|
|
|
down {
|
|
DB.drop_table :comment_likes
|
|
}
|
|
end
|