1
0
Fork 0
MSU-Course-Alerter/db/migrate/20130402064200_create_alert...

13 lines
228 B
Ruby

class CreateAlerts < ActiveRecord::Migration
def change
create_table :alerts do |t|
t.integer :user_id
t.string :department
t.string :course
t.boolean :alerted
t.timestamps
end
end
end