10 lines
152 B
Ruby
10 lines
152 B
Ruby
|
|
class CreateAnswers < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :answers do |t|
|
||
|
|
t.string :title
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|