Question

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
Was it helpful?

Solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top