Sha256: 13c74118c7302e8818b4903866d1273bf523c2c6377de6570d7ccf44852bf628
Contents?: true
Size: 279 Bytes
Versions: 4
Compression:
Stored size: 279 Bytes
Contents
class CreateThings < ActiveRecord::Migration def up create_table :things do |t| end Thing.create_translation_table!({ name: {type: :string, null: false, default: ''}, }) end def down drop_table :things Thing.drop_translation_table! end end
Version data entries
4 entries across 4 versions & 1 rubygems