Destructo/db/migrations/0001_add_messages_table.rb

18 lines
348 B
Ruby
Raw Permalink Normal View History

Sequel.migration do
up do
create_table(:messages) do
primary_key :id
2024-07-03 11:20:06 -04:00
String :slug, null: false, unique: true
String :body, null: false
DateTime :created_at, default: Sequel::CURRENT_TIMESTAMP
DateTime :updated_at, default: Sequel::CURRENT_TIMESTAMP
end
end
down do
drop_table(:messages)
end
end