sqm-dashboards/db/migrate/20230830213521_create_ell.rb
2023-09-29 19:29:23 -07:00

12 lines
226 B
Ruby

class CreateEll < ActiveRecord::Migration[7.0]
def change
create_table :ells do |t|
t.string :designation
t.string :slug
t.timestamps
end
add_index :ells, :designation, unique: true
end
end