Files
Klaus/db/migrate/20140808224452_create_professors.rb
T
Florian Bogenhard cedeffd2c6 Klaus V2.0
2014-10-13 12:56:00 +02:00

11 lines
189 B
Ruby

class CreateProfessors < ActiveRecord::Migration
def change
create_table :professors do |t|
t.string :first_name
t.string :last_name
t.timestamps
end
end
end