Sha256: a6ff9312bf6b1a62a3a3e28c7ead8bb38a84d66152da3220a828c2fac12ec081

Contents?: true

Size: 187 Bytes

Versions: 5

Compression:

Stored size: 187 Bytes

Contents

class CreateProducers < ActiveRecord::Migration

  def self.up
    create_table :producers do |t|
      t.string :name
    end
  end

  def self.down
    drop_table :producers
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
machinist_callbacks-0.2.0 spec/app_root/db/migrate/003_create_producers.rb
machinist_callbacks-0.1.3 spec/app_root/db/migrate/003_create_producers.rb
machinist_callbacks-0.1.2 spec/app_root/db/migrate/003_create_producers.rb
machinist_callbacks-0.1.1 spec/app_root/db/migrate/003_create_producers.rb
machinist_callbacks-0.1.0 spec/app_root/db/migrate/003_create_producers.rb