Pergunta

What is the Rails Migration for creating a table?

I tried this migration generator:

$ rails g migration CreateQuestions user:references question_title:string question_text:text approved:boolean

This creates a migration that seems to be missing the usual id and timestamps fields. Did I mess up my generator?

class CreateQuestions < ActiveRecord::Migration
  def change
    create_table :questions do |t|
      t.references :user, index: true
      t.string :question_title
      t.text :question_text
      t.boolean :approved
    end
  end
end
Foi útil?

Solução

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top