Files
fizzy/db/migrate/20240621144855_create_organizations.rb
T
2024-06-21 16:45:29 +01:00

10 lines
206 B
Ruby

class CreateOrganizations < ActiveRecord::Migration[8.0]
def change
create_table :organizations do |t|
t.string :name, null: false, index: { unique: true }
t.timestamps
end
end
end