Sha256: 7f4583aa33cb1cdfbba990b6049d941c4a38186c218c7b11675a9ce4a5849477
Contents?: true
Size: 447 Bytes
Versions: 5
Compression:
Stored size: 447 Bytes
Contents
class Tags < ActiveRecord::Migration def change create_table :droom_tags do |t| t.column :name, :string t.column :parent_id, :integer t.column :created_by_id, :integer t.timestamps end create_table :droom_taggings do |t| t.column :tag_id, :integer t.column :taggee_id, :integer t.column :taggee_type, :string t.column :created_by_id, :integer t.timestamps end end end
Version data entries
5 entries across 5 versions & 1 rubygems