Sha256: 98f0b1356779b6a8f1b0549dbe6edcbb41cd47d7b0f90abb9ab8e0df8c93d72e

Contents?: true

Size: 205 Bytes

Versions: 2

Compression:

Stored size: 205 Bytes

Contents

class CreateThings < ActiveRecord::Migration
  def change
    create_table :things do |t|
      t.string :name
      t.decimal :price
      t.integer :qty

      t.timestamps null: false
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_cart-0.0.4 spec/dummy/db/migrate/20160314184745_create_things.rb
simple_cart-0.0.3 test/dummy/db/migrate/20160314184745_create_things.rb