frankfurter/db/migrate/004_create_providers.rb

17 lines
264 B
Ruby
Raw Normal View History

2026-05-21 01:38:14 -06:00
# frozen_string_literal: true
Sequel.migration do
up do
create_table :providers do
String :key, primary_key: true
String :name, null: false
String :description
String :url
end
end
down do
drop_table :providers
end
end