Sha256: 5435fc04b7d94e40d2dc5d8cb68708fed866016df3dc63c91c55cb39269b26f2

Contents?: true

Size: 316 Bytes

Versions: 6

Compression:

Stored size: 316 Bytes

Contents

class HasManyThroughs < ActiveRecord::Migration
  def self.up
    create_table :has_many_throughs do |t|
      t.string :string, :default => 'string'
      t.integer :integer, :default => '1'
      t.datetime :restored_at
      t.timestamps
    end
  end

  def self.down
    drop_table :has_many_throughs
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
acts_as_archive-0.4.1 spec/fixtures/db/migrate/006_has_many_throughs.rb
rylwin-acts_as_archive-0.4.0 spec/fixtures/db/migrate/006_has_many_throughs.rb
acts_as_archive-0.4.0 spec/fixtures/db/migrate/006_has_many_throughs.rb
acts_as_archive-0.3.4 spec/fixtures/db/migrate/006_has_many_throughs.rb
acts_as_archive-0.3.3 spec/fixtures/db/migrate/006_has_many_throughs.rb
acts_as_archive-0.3.2 spec/fixtures/db/migrate/006_has_many_throughs.rb