20111002180610_create_microposts.rb 185 B

12345678910
  1. class CreateMicroposts < ActiveRecord::Migration
  2. def change
  3. create_table :microposts do |t|
  4. t.string :content
  5. t.integer :user_id
  6. t.timestamps
  7. end
  8. end
  9. end