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.

14 lines
270 B

Sequel.migration do
change do
create_table(:pinboard) do
primary_key :id
foreign_key :entity_id, :entities
String :json, text: true, null: false
DateTime :created_at, null: false
DateTime :modified_at, null: false
end
end
end