You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pgfqe6ch8/db/migrate/20151113025341_exercise.rb

18 lines
337 B

class Exercise < ActiveRecord::Migration
def up
create_table :exercises do |t|
t.string :exercise_name
t.text :exercise_description
t.integer :course_id
t.integer :exercise_status
t.integer :user_id
t.integer :time
t.timestamps
end
end
def down
drop_table :exercise
end
end