10 lines
206 B
Ruby
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
|