mirror of
https://github.com/Threnklyn/Klaus.git
synced 2026-05-18 12:13:28 +02:00
11 lines
189 B
Ruby
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
|