socialforge/db/migrate/20141126091207_create_cours...

12 lines
190 B
Ruby
Raw Permalink Normal View History

class CreateCourseGroups < ActiveRecord::Migration
def change
create_table :course_groups do |t|
t.string :name
t.integer :course_id
t.timestamps
end
end
end