Added ability to comment on license records; updated item list view to link to the item display pages
This commit is contained in:
20
db/migrations/0004_add_license_comments_table.rb
Normal file
20
db/migrations/0004_add_license_comments_table.rb
Normal file
@ -0,0 +1,20 @@
|
||||
Sequel.migration do
|
||||
|
||||
up do
|
||||
create_table(:license_comments) do
|
||||
primary_key :id
|
||||
String :body, null: false
|
||||
DateTime :created_at
|
||||
DateTime :updated_at
|
||||
end
|
||||
|
||||
alter_table(:license_comments) do
|
||||
add_foreign_key :license_id, :items
|
||||
end
|
||||
end
|
||||
|
||||
down do
|
||||
drop_table(:license_comments)
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user