Sha256: 79d904302a6ab93135a3dfffe49bc838c2922f2713688e9dfb91ae6db769b914
Contents?: true
Size: 260 Bytes
Versions: 97
Compression:
Stored size: 260 Bytes
Contents
class CreateTags < ActiveRecord::Migration def up create_table :tags do |t| t.timestamps end Tag.create_translation_table!( title: :string ) end def down drop_table :tags Tag.drop_translation_table! end end
Version data entries
97 entries across 97 versions & 1 rubygems