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

13 lines
228 B
Ruby
Raw Normal View History

2013-04-02 02:43:01 -04:00
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