Sha256: 2df5cb766344976aedd4e99971a6e6838ff29467c0160a0c9367043c133eeafe

Contents?: true

Size: 391 Bytes

Versions: 4

Compression:

Stored size: 391 Bytes

Contents

# This migration comes from office (originally 20131226144316)
class Baskets < ActiveRecord::Migration
  def change
    create_table :baskets do |t|
      t.integer     :kori_id
      t.string      :kori_type
      t.decimal     :total_price , :default => 0.0
      t.decimal     :total_tax ,   :default => 0.0
      t.date        :locked
      t.timestamps :null => false
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
post_clerk-0.6 test_app/db/migrate/20141114205530_baskets.office.rb
accountant_clerk-0.8 test_app/db/migrate/20141114205530_baskets.office.rb
post_clerk-0.5 test_app/db/migrate/20141114205530_baskets.office.rb
accountant_clerk-0.7 test_app/db/migrate/20141114205530_baskets.office.rb