Update structure file

This commit is contained in:
Priit Tark 2015-07-03 13:54:34 +03:00
parent 9f9a330950
commit a1cb5ad9e3
2 changed files with 55 additions and 10 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150703090039) do
ActiveRecord::Schema.define(version: 20150703105159) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -919,14 +919,14 @@ ActiveRecord::Schema.define(version: 20150703090039) do
create_table "pricelists", force: :cascade do |t|
t.string "desc"
t.string "category"
t.decimal "price_cents", precision: 8, scale: 2, default: 0.0, null: false
t.string "price_currency", default: "EUR", null: false
t.decimal "price_cents", precision: 10, scale: 2, default: 0.0, null: false
t.string "price_currency", default: "EUR", null: false
t.datetime "valid_from"
t.datetime "valid_to"
t.string "creator_str"
t.string "updator_str"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "duration"
t.string "operation_category"
end