Sha256: beed5eaa1c7b34fcb2c8f132f26c8eb9176f47223fc8da3adb700651994ddec9
Contents?: true
Size: 385 Bytes
Versions: 6
Compression:
Stored size: 385 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def change create_table :posts do |t| t.references :user t.references :category t.timestamps null: false end reversible do |dir| dir.up do Post.create_translation_table! title: :string, body: :string end dir.down do Post.drop_translation_table! end end end end
Version data entries
6 entries across 6 versions & 1 rubygems