Sha256: 52b0c19dd15667fe19dc7e81a549e6a9728fcb03e2c2539dacb0cc9859257cac
Contents?: true
Size: 414 Bytes
Versions: 3
Compression:
Stored size: 414 Bytes
Contents
class CreateAssetAssignments < ActiveRecord::Migration def self.up create_table :asset_assignments, :force => true do |t| t.integer :content_id t.integer :asset_id t.integer :position t.string :title t.references :user t.references :site t.references :section t.timestamps end end def self.down drop_table :asset_assignments end end
Version data entries
3 entries across 3 versions & 1 rubygems