Sha256: 05a1139f2629ea0162865c69adfc51a5673c7a66b215d48b2efd417f8fe54ed7
Contents?: true
Size: 450 Bytes
Versions: 26
Compression:
Stored size: 450 Bytes
Contents
class CreateSeriesHasManifestations < ActiveRecord::Migration def self.up create_table :series_has_manifestations do |t| t.integer :series_statement_id t.integer :manifestation_id t.integer :position t.timestamps end add_index :series_has_manifestations, :series_statement_id add_index :series_has_manifestations, :manifestation_id end def self.down drop_table :series_has_manifestations end end
Version data entries
26 entries across 26 versions & 2 rubygems