Sha256: c510feaf784189abe3275185d9a71212fcbc4161b305a5c805f54b1c42ddef1e

Contents?: true

Size: 217 Bytes

Versions: 7

Compression:

Stored size: 217 Bytes

Contents

class CreateStiModel < ActiveRecord::Migration

  def self.up
    create_table :sti_models do |t|
      t.string :type
      t.string :string_field
    end
  end

  def self.down
    drop_table :sti_models
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rspec_candy-0.3.1 spec/shared/app_root/db/migrate/003_create_sti_model.rb
rspec_candy-0.3.0 spec/shared/app_root/db/migrate/003_create_sti_model.rb
rspec_candy-0.2.10 spec/shared/app_root/db/migrate/003_create_sti_model.rb
rspec_candy-0.2.9 spec/shared/app_root/db/migrate/003_create_sti_model.rb
rspec_candy-0.2.8 spec/shared/app_root/db/migrate/003_create_sti_model.rb
rspec_candy-0.2.7 spec/shared/app_root/db/migrate/003_create_sti_model.rb
rspec_candy-0.2.6 spec/shared/app_root/db/migrate/003_create_sti_model.rb