Dashboard/db/migrate/20240104184053_create_dashboard_students.rb

10 lines
206 B
Ruby

class CreateDashboardStudents < ActiveRecord::Migration[7.1]
def change
create_table :dashboard_students do |t|
t.string :lasid
t.string :response_id
t.timestamps
end
end
end