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.
alphadex/db/migrations/006_create_sources_and_note...

23 lines
471 B

Sequel.migration do
change do
create_table(:sources) do
foreign_key :entity_id, :entities
foreign_key :source_id, :entities
DateTime :created_at, null: false
DateTime :modified_at, null: false
unique %i[entity_id source_id]
end
create_table(:notes) do
foreign_key :entity_id, :entities
String :text, text: true
DateTime :created_at, null: false
DateTime :modified_at, null: false
end
end
end