neocities/migrations/027_add_comment_likes.rb
2014-05-05 11:58:11 -07:00

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