20120420083127_create_posts.rb 167 字节
Newer Older
1 2 3 4
class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.string :title
5
      t.text :text
6 7 8 9 10

      t.timestamps
    end
  end
end