Sha256: cc3110491eaf62340dce236a4ae4b9f5118481144a77324b08f5cb661de3ee2f

Contents?: true

Size: 408 Bytes

Versions: 25

Compression:

Stored size: 408 Bytes

Contents

class CreateVehicles < ActiveRecord::Migration
  def self.up
    create_table :vehicles do |t|
      t.references :highway, :null => false
      t.references :auto_shop, :null => false
      t.boolean :seatbelt_on, :null => false
      t.integer :insurance_premium, :null => false
      t.string :state, :null => false
      t.string :type
    end
  end
  
  def self.down
    drop_table :vehicles
  end
end

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
spree-enriquez-0.9.4 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.9.4 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.9.3 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.9.2 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.9.1 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.9.0 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.8.4 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.8.5 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.4.0 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.4.1 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.5.0 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.6.0 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.5.1 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.7.0 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.7.1 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.8.0 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.8.1 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.8.2 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
spree-0.8.3 vendor/plugins/state_machine/test/app_root/db/migrate/004_create_vehicles.rb
state_machine-0.2.0 test/app_root/db/migrate/004_create_vehicles.rb