Sha256: 6a11b11a6f4a49c122c50d78a8cd61e0e8b913a885a1306eac5ae581931f3ec5
Contents?: true
Size: 257 Bytes
Versions: 62
Compression:
Stored size: 257 Bytes
Contents
class CreateTags < ActiveRecord::Migration def change create_table :tags do |t| t.string :title t.timestamps end create_table :products_tags, id: false do |t| t.references :tag t.references :product end end end
Version data entries
62 entries across 62 versions & 1 rubygems