Added new ItemComment model

This commit is contained in:
2022-12-08 01:32:41 -05:00
parent 11d33e394b
commit 12045c684e
6 changed files with 61 additions and 1 deletions

View File

@ -0,0 +1,20 @@
Sequel.migration do
up do
create_table(:item_comments) do
primary_key :id
String :body, null: false
DateTime :created_at
DateTime :updated_at
end
alter_table(:item_comments) do
add_foreign_key :item_id, :items
end
end
down do
drop_table(:item_comments)
end
end