ecole_eft_app/db/migrate/20140719210441_create_student_groups.rb

11 lines
185 B
Ruby

class CreateStudentGroups < ActiveRecord::Migration
def change
create_table :student_groups do |t|
t.string :name
t.string :slug
t.timestamps
end
end
end