Sha256: fbb9e1a0460f588d76a6620e9079d3e82ca90e2e388abbc22a2a5a73a6599d66
Contents?: true
Size: 604 Bytes
Versions: 1
Compression:
Stored size: 604 Bytes
Contents
class CreateReserveStatHasManifestations < ActiveRecord::Migration[5.0] def self.up create_table :reserve_stat_has_manifestations do |t| t.integer :manifestation_reserve_stat_id, null: false t.integer :manifestation_id, null: false t.integer :reserves_count t.timestamps end add_index :reserve_stat_has_manifestations, :manifestation_reserve_stat_id, name: 'index_reserve_stat_has_manifestations_on_m_reserve_stat_id' add_index :reserve_stat_has_manifestations, :manifestation_id end def self.down drop_table :reserve_stat_has_manifestations end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
enju_seed-0.3.0.beta.4 | spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb |