Sha256: 47f13f9d5c57d03a6384bf687ff242895fc777091c6d218802329e023999878b
Contents?: true
Size: 298 Bytes
Versions: 7
Compression:
Stored size: 298 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def change create_table :posts do |t| t.references :category t.references :language t.string :title t.text :content t.timestamps end add_index :posts, :category_id add_index :posts, :language_id end end
Version data entries
7 entries across 7 versions & 1 rubygems