mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
8 lines
212 B
Ruby
8 lines
212 B
Ruby
class CreateAcademicYears < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :academic_years do |t|
|
|
t.string :range, null: false, unique: true
|
|
t.index :range, unique: true
|
|
end
|
|
end
|
|
end
|