11 lines
185 B
Ruby
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
|