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.
trustieforge/db/migrate/20130831080808_create_teach...

13 lines
241 B

class CreateTeachers < ActiveRecord::Migration
def change
create_table :teachers do |t|
t.string :tea_name
t.string :location
t.integer :couurse_time
t.integer :course_code
t.timestamps
end
end
end