You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
482 B
23 lines
482 B
Sequel.migration do
|
|
change do
|
|
create_table(:sources) do
|
|
foreign_key :entity_id, :entities, null: false
|
|
foreign_key :source_id, :entities, null: false
|
|
|
|
DateTime :created_at, null: false
|
|
DateTime :updated_at
|
|
|
|
unique %i[entity_id source_id]
|
|
end
|
|
|
|
create_table(:notes) do
|
|
foreign_key :entity_id, :entities, null: false
|
|
|
|
String :text, text: true
|
|
|
|
DateTime :created_at, null: false
|
|
DateTime :updated_at
|
|
end
|
|
end
|
|
end
|