mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
12 lines
226 B
Ruby
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
|