Sha256: b1a96ce021a9cdc8f26f82855af1c102263e685404c6fba90b1ffe73d79fe842
Contents?: true
Size: 352 Bytes
Versions: 6
Compression:
Stored size: 352 Bytes
Contents
class CreateComments < ActiveRecord::Migration def change create_table :comments do |t| t.references :user t.timestamps null: false end reversible do |dir| dir.up do Comment.create_translation_table! body: :string end dir.down do Comment.drop_translation_table! end end end end
Version data entries
6 entries across 6 versions & 1 rubygems