mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
12 lines
216 B
Ruby
12 lines
216 B
Ruby
class CreateSpeds < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :speds do |t|
|
|
t.string :designation
|
|
t.string :slug
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :speds, :designation
|
|
end
|
|
end
|