mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
11 lines
194 B
Ruby
11 lines
194 B
Ruby
class CreateNewStudent < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :students do |t|
|
|
t.string :lasid
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :students, :lasid
|
|
end
|
|
end
|