mks_edm 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6a699ea2a8e33ff7558571092f9a5afcaa5064d7a7d34f378519fce8dbff152
4
- data.tar.gz: 24b91bea7fb8afd3424a273ad6e7685de63d58624f5eb8a7aea61f8dc2f48e17
3
+ metadata.gz: 28892b0366aa9bc6357510da748e47327b2706dca314a662a8a298647179e288
4
+ data.tar.gz: 6a538cf2238df48a61031bcb722e7e4b6a150357d859805ef73f61a978c6173d
5
5
  SHA512:
6
- metadata.gz: 4b557c50288361f2ad7810cc524706cc410bd02a15c845cf46ea954419b8d043616b070f016883db69c603047e98dd8d363cd95901254d108901d61fd44fdef8
7
- data.tar.gz: 3ba64446a85a4a691fd53e042bf9dddcca7db956f2489247495253dd841a27c9a5b2bfd2310a75560652a2c8ec5bf2c3209f833e7e3024b54d817dd99d464617
6
+ metadata.gz: 859ca3b3dc2c22c37afec020daef5ac58f82c6c8ddb0aa7219db3c333e9b37aeef5c815901ce7fd567f796a30003d330d6384943416e41fdc27a9759ea096d4f
7
+ data.tar.gz: 0c0eead8bb217a2194324f25e5c342a1e57269c8b8147ef362ead5e7f9c0ae55a7c4133f1a59a342bb909d75c8d22e7b8d8dad5ce8b70861c2cdd20ef3ccc2a0
@@ -1,5 +1,5 @@
1
1
  module Mks
2
2
  module Edm
3
- VERSION = '1.0.1'.freeze
3
+ VERSION = '1.0.2'.freeze
4
4
  end
5
5
  end
@@ -33282,3 +33282,219 @@ FOREIGN KEY ("chargeable_service_id")
33282
33282
   (2.3ms) BEGIN
33283
33283
  ActiveRecord::InternalMetadata Update (1.1ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-09-05 05:07:09.725663"], ["key", "environment"]]
33284
33284
   (1.3ms) COMMIT
33285
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
33286
+  (0.9ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
33287
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
33288
+  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
33289
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
33290
+  (0.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "environment"]]
33291
+  (123.4ms) DROP DATABASE IF EXISTS "construction_test"
33292
+  (340.3ms) CREATE DATABASE "construction_test" ENCODING = 'utf8'
33293
+ SQL (0.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
33294
+  (0.7ms) DROP TABLE IF EXISTS "mks_auth_application_modules" CASCADE
33295
+  (14.5ms) CREATE TABLE "mks_auth_application_modules" ("id" serial NOT NULL PRIMARY KEY, "code" character varying NOT NULL, "name" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33296
+  (0.8ms) DROP TABLE IF EXISTS "mks_auth_menus" CASCADE
33297
+  (6.7ms) CREATE TABLE "mks_auth_menus" ("id" serial NOT NULL PRIMARY KEY, "text" character varying NOT NULL, "icon_cls" character varying, "class_name" character varying, "location" character varying, "parent_id" integer, "application_module_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33298
+  (3.5ms) CREATE INDEX "index_mks_auth_menus_on_application_module_id" ON "mks_auth_menus" ("application_module_id")
33299
+  (3.5ms) CREATE INDEX "index_mks_auth_menus_on_parent_id" ON "mks_auth_menus" ("parent_id")
33300
+  (1.1ms) DROP TABLE IF EXISTS "mks_auth_menus_user_roles" CASCADE
33301
+  (4.9ms) CREATE TABLE "mks_auth_menus_user_roles" ("id" serial NOT NULL PRIMARY KEY, "menu_id" integer, "user_role_id" integer)
33302
+  (4.6ms) CREATE INDEX "index_mks_auth_menus_user_roles_on_menu_id_and_user_role_id" ON "mks_auth_menus_user_roles" ("menu_id", "user_role_id")
33303
+  (0.8ms) DROP TABLE IF EXISTS "mks_auth_user_roles" CASCADE
33304
+  (6.7ms) CREATE TABLE "mks_auth_user_roles" ("id" serial NOT NULL PRIMARY KEY, "name" character varying NOT NULL, "application_module_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33305
+  (3.3ms) CREATE INDEX "index_mks_auth_user_roles_on_application_module_id" ON "mks_auth_user_roles" ("application_module_id")
33306
+  (0.8ms) DROP TABLE IF EXISTS "mks_auth_users" CASCADE
33307
+  (7.0ms) CREATE TABLE "mks_auth_users" ("id" serial NOT NULL PRIMARY KEY, "first_name" character varying NOT NULL, "last_name" character varying NOT NULL, "email" character varying NOT NULL, "active" boolean DEFAULT TRUE NOT NULL, "password_digest" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33308
+  (0.9ms) DROP TABLE IF EXISTS "mks_auth_users_application_modules" CASCADE
33309
+  (1.9ms) CREATE TABLE "mks_auth_users_application_modules" ("user_id" bigint, "application_module_id" bigint)
33310
+  (3.7ms) CREATE INDEX "am_on_users_indx" ON "mks_auth_users_application_modules" ("user_id", "application_module_id")
33311
+  (0.7ms) DROP TABLE IF EXISTS "mks_auth_users_user_roles" CASCADE
33312
+  (2.1ms) CREATE TABLE "mks_auth_users_user_roles" ("user_id" integer, "user_role_id" integer)
33313
+  (3.2ms) CREATE INDEX "index_mks_auth_users_user_roles_on_user_id_and_user_role_id" ON "mks_auth_users_user_roles" ("user_id", "user_role_id")
33314
+  (0.7ms) DROP TABLE IF EXISTS "mks_edm_equipment_categories" CASCADE
33315
+  (6.5ms) CREATE TABLE "mks_edm_equipment_categories" ("id" bigserial primary key, "code" character varying, "name" character varying NOT NULL, "description" character varying, "equipment_type_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33316
+  (3.2ms) CREATE INDEX "ec_on_et_indx" ON "mks_edm_equipment_categories" ("equipment_type_id")
33317
+  (0.8ms) DROP TABLE IF EXISTS "mks_edm_equipment_components" CASCADE
33318
+  (6.2ms) CREATE TABLE "mks_edm_equipment_components" ("id" bigserial primary key, "serial_no" character varying, "name" character varying NOT NULL, "equipment_item_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33319
+  (3.5ms) CREATE INDEX "ei_on_ec_indx" ON "mks_edm_equipment_components" ("equipment_item_id")
33320
+  (0.8ms) DROP TABLE IF EXISTS "mks_edm_equipment_items" CASCADE
33321
+  (6.9ms) CREATE TABLE "mks_edm_equipment_items" ("id" bigserial primary key, "code" character varying, "name" character varying NOT NULL, "description" character varying, "status" character varying DEFAULT 'READY', "serial_number" character varying, "brand" character varying, "item_model" character varying, "purchase_price" float NOT NULL, "purchase_date" date NOT NULL, "license_fee" float, "tax" float, "equipment_id" bigint, "current_location_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33322
+  (4.3ms) CREATE INDEX "equipment_on_el_indx" ON "mks_edm_equipment_items" ("current_location_id")
33323
+  (3.5ms) CREATE INDEX "equipment_on_ei_indx" ON "mks_edm_equipment_items" ("equipment_id")
33324
+  (1.0ms) DROP TABLE IF EXISTS "mks_edm_equipment_locations" CASCADE
33325
+  (6.7ms) CREATE TABLE "mks_edm_equipment_locations" ("id" bigserial primary key, "code" character varying, "name" character varying NOT NULL, "location_type_id" bigint, "description" character varying, "address" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33326
+  (4.3ms) CREATE INDEX "lt_on_el_indx" ON "mks_edm_equipment_locations" ("location_type_id")
33327
+  (0.8ms) DROP TABLE IF EXISTS "mks_edm_equipment_types" CASCADE
33328
+  (7.5ms) CREATE TABLE "mks_edm_equipment_types" ("id" bigserial primary key, "code" character varying, "name" character varying NOT NULL, "description" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33329
+  (0.9ms) DROP TABLE IF EXISTS "mks_edm_equipment_valuations" CASCADE
33330
+  (6.6ms) CREATE TABLE "mks_edm_equipment_valuations" ("id" bigserial primary key, "equipment_item_id" bigint, "initial_cost" float NOT NULL, "residual_value" float NOT NULL, "work_hrs_per_yr" float NOT NULL, "life_year" float NOT NULL, "insurance_premium" float NOT NULL, "fuel_cost_per_hr" float, "oil_rate" float, "repair_rate" float, "rate_of_return" float, "dep_method" character varying, "is_current" boolean DEFAULT TRUE, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33331
+  (3.2ms) CREATE INDEX "ev_on_ei_indx" ON "mks_edm_equipment_valuations" ("equipment_item_id")
33332
+  (0.7ms) DROP TABLE IF EXISTS "mks_edm_equipments" CASCADE
33333
+  (7.0ms) CREATE TABLE "mks_edm_equipments" ("id" bigserial primary key, "code" character varying, "name" character varying NOT NULL, "description" character varying, "minimum_acquisition_time" float DEFAULT 0.0 NOT NULL, "equipment_category_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33334
+  (3.6ms) CREATE INDEX "equipment_on_ec_indx" ON "mks_edm_equipments" ("equipment_category_id")
33335
+  (0.9ms) DROP TABLE IF EXISTS "mks_edm_location_types" CASCADE
33336
+  (6.6ms) CREATE TABLE "mks_edm_location_types" ("id" bigserial primary key, "code" character varying, "name" character varying, "description" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33337
+  (0.8ms) DROP TABLE IF EXISTS "mks_rate_bundle_discounts" CASCADE
33338
+  (5.8ms) CREATE TABLE "mks_rate_bundle_discounts" ("id" bigserial primary key, "chargeable_service_id" bigint, "service_bundle_id" bigint, "percent_discount" float NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33339
+  (3.5ms) CREATE INDEX "cs_on_bd_indx" ON "mks_rate_bundle_discounts" ("chargeable_service_id")
33340
+  (3.3ms) CREATE INDEX "sb_on_bd_indx" ON "mks_rate_bundle_discounts" ("service_bundle_id")
33341
+  (0.6ms) DROP TABLE IF EXISTS "mks_rate_chargeable_service_discounts" CASCADE
33342
+  (7.0ms) CREATE TABLE "mks_rate_chargeable_service_discounts" ("id" bigserial primary key, "unit_variable" character varying NOT NULL, "from" float NOT NULL, "to" float NOT NULL, "value" float NOT NULL, "chargeable_service_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33343
+  (0.7ms) DROP TABLE IF EXISTS "mks_rate_chargeable_services" CASCADE
33344
+  (7.0ms) CREATE TABLE "mks_rate_chargeable_services" ("id" bigserial primary key, "code" character varying NOT NULL, "name" character varying NOT NULL, "service_type_id" integer, "base_unit_id" integer, "utilization_unit_id" integer, "service_delivery_unit_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33345
+  (3.9ms) CREATE INDEX "bu_on_cs_indx" ON "mks_rate_chargeable_services" ("base_unit_id")
33346
+  (3.6ms) CREATE INDEX "sdu_on_cs_indx" ON "mks_rate_chargeable_services" ("service_delivery_unit_id")
33347
+  (3.3ms) CREATE INDEX "st_on_cs_indx" ON "mks_rate_chargeable_services" ("service_type_id")
33348
+  (3.5ms) CREATE INDEX "uu_on_cs_indx" ON "mks_rate_chargeable_services" ("utilization_unit_id")
33349
+  (0.6ms) DROP TABLE IF EXISTS "mks_rate_rate_change_requests" CASCADE
33350
+  (7.6ms) CREATE TABLE "mks_rate_rate_change_requests" ("id" bigserial primary key, "reference_number" character varying, "authorized_by" character varying NOT NULL, "effective_on" date NOT NULL, "authorized_on" date NOT NULL, "rates" json NOT NULL, "status" character varying DEFAULT 'SUBMITTED' NOT NULL, "created_by_id" bigint, "approved_by_id" bigint, "remark" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33351
+  (3.5ms) CREATE INDEX "ab_on_rcr_indx" ON "mks_rate_rate_change_requests" ("approved_by_id")
33352
+  (3.3ms) CREATE INDEX "cb_on_rcr_indx" ON "mks_rate_rate_change_requests" ("created_by_id")
33353
+  (4.7ms) CREATE UNIQUE INDEX "index_mks_rate_rate_change_requests_on_reference_number" ON "mks_rate_rate_change_requests" ("reference_number")
33354
+  (0.7ms) DROP TABLE IF EXISTS "mks_rate_service_bundles" CASCADE
33355
+  (7.0ms) CREATE TABLE "mks_rate_service_bundles" ("id" bigserial primary key, "code" character varying, "name" character varying NOT NULL, "description" character varying, "service_delivery_unit_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33356
+  (4.4ms) CREATE INDEX "sdu_on_sb_indx" ON "mks_rate_service_bundles" ("service_delivery_unit_id")
33357
+  (0.8ms) DROP TABLE IF EXISTS "mks_rate_service_delivery_units" CASCADE
33358
+  (8.5ms) CREATE TABLE "mks_rate_service_delivery_units" ("id" bigserial primary key, "code" character varying NOT NULL, "name" character varying NOT NULL, "address" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33359
+  (0.8ms) DROP TABLE IF EXISTS "mks_rate_service_rates" CASCADE
33360
+  (4.9ms) CREATE TABLE "mks_rate_service_rates" ("id" bigserial primary key, "chargeable_service_id" bigint, "equipment_item_id" bigint, "base_rate" float DEFAULT 0.0, "utilization_rate" float DEFAULT 0.0, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33361
+  (3.4ms) CREATE INDEX "cs_on_sr_indx" ON "mks_rate_service_rates" ("chargeable_service_id")
33362
+  (4.1ms) CREATE INDEX "cs_on_ei_indx" ON "mks_rate_service_rates" ("equipment_item_id")
33363
+  (1.3ms) DROP TABLE IF EXISTS "mks_rate_service_types" CASCADE
33364
+  (6.2ms) CREATE TABLE "mks_rate_service_types" ("id" bigserial primary key, "code" character varying, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33365
+  (0.7ms) DROP TABLE IF EXISTS "mks_rate_unit_of_charges" CASCADE
33366
+  (6.6ms) CREATE TABLE "mks_rate_unit_of_charges" ("id" bigserial primary key, "name" character varying NOT NULL, "unit_variables" json NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33367
+  (3.3ms) ALTER TABLE "mks_auth_menus" ADD CONSTRAINT "fk_rails_e5dd25fcb5"
33368
+ FOREIGN KEY ("application_module_id")
33369
+ REFERENCES "mks_auth_application_modules" ("id")
33370
+ 
33371
+  (2.8ms) ALTER TABLE "mks_auth_menus" ADD CONSTRAINT "fk_rails_826b2757bc"
33372
+ FOREIGN KEY ("parent_id")
33373
+ REFERENCES "mks_auth_menus" ("id")
33374
+ 
33375
+  (2.4ms) ALTER TABLE "mks_auth_menus_user_roles" ADD CONSTRAINT "fk_rails_1807c05e36"
33376
+ FOREIGN KEY ("menu_id")
33377
+ REFERENCES "mks_auth_menus" ("id")
33378
+ 
33379
+  (2.6ms) ALTER TABLE "mks_auth_menus_user_roles" ADD CONSTRAINT "fk_rails_c24fca59c0"
33380
+ FOREIGN KEY ("user_role_id")
33381
+ REFERENCES "mks_auth_user_roles" ("id")
33382
+ 
33383
+  (2.6ms) ALTER TABLE "mks_auth_user_roles" ADD CONSTRAINT "fk_rails_b0b293e4e2"
33384
+ FOREIGN KEY ("application_module_id")
33385
+ REFERENCES "mks_auth_application_modules" ("id")
33386
+ 
33387
+  (3.3ms) ALTER TABLE "mks_auth_users_application_modules" ADD CONSTRAINT "fk_rails_b100f8542c"
33388
+ FOREIGN KEY ("application_module_id")
33389
+ REFERENCES "mks_auth_application_modules" ("id")
33390
+ 
33391
+  (2.8ms) ALTER TABLE "mks_auth_users_application_modules" ADD CONSTRAINT "fk_rails_1010e0182a"
33392
+ FOREIGN KEY ("user_id")
33393
+ REFERENCES "mks_auth_users" ("id")
33394
+ 
33395
+  (2.4ms) ALTER TABLE "mks_auth_users_user_roles" ADD CONSTRAINT "fk_rails_3dae904cd8"
33396
+ FOREIGN KEY ("user_role_id")
33397
+ REFERENCES "mks_auth_user_roles" ("id")
33398
+ 
33399
+  (2.4ms) ALTER TABLE "mks_auth_users_user_roles" ADD CONSTRAINT "fk_rails_7cc19890aa"
33400
+ FOREIGN KEY ("user_id")
33401
+ REFERENCES "mks_auth_users" ("id")
33402
+ 
33403
+  (3.3ms) ALTER TABLE "mks_edm_equipment_categories" ADD CONSTRAINT "fk_rails_37d48f9db9"
33404
+ FOREIGN KEY ("equipment_type_id")
33405
+ REFERENCES "mks_edm_equipment_types" ("id")
33406
+ 
33407
+  (3.4ms) ALTER TABLE "mks_edm_equipment_components" ADD CONSTRAINT "fk_rails_df30d7c6f8"
33408
+ FOREIGN KEY ("equipment_item_id")
33409
+ REFERENCES "mks_edm_equipment_items" ("id")
33410
+ 
33411
+  (2.5ms) ALTER TABLE "mks_edm_equipment_items" ADD CONSTRAINT "fk_rails_c0b56e395b"
33412
+ FOREIGN KEY ("current_location_id")
33413
+ REFERENCES "mks_edm_equipment_locations" ("id")
33414
+ 
33415
+  (3.2ms) ALTER TABLE "mks_edm_equipment_items" ADD CONSTRAINT "fk_rails_9c44a32cfe"
33416
+ FOREIGN KEY ("equipment_id")
33417
+ REFERENCES "mks_edm_equipments" ("id")
33418
+ 
33419
+  (3.0ms) ALTER TABLE "mks_edm_equipment_locations" ADD CONSTRAINT "fk_rails_4117320862"
33420
+ FOREIGN KEY ("location_type_id")
33421
+ REFERENCES "mks_edm_location_types" ("id")
33422
+ 
33423
+  (4.3ms) ALTER TABLE "mks_edm_equipment_valuations" ADD CONSTRAINT "fk_rails_b09a0ab3c3"
33424
+ FOREIGN KEY ("equipment_item_id")
33425
+ REFERENCES "mks_edm_equipment_items" ("id")
33426
+ 
33427
+  (4.3ms) ALTER TABLE "mks_edm_equipments" ADD CONSTRAINT "fk_rails_59110db010"
33428
+ FOREIGN KEY ("equipment_category_id")
33429
+ REFERENCES "mks_edm_equipment_categories" ("id")
33430
+ 
33431
+  (3.4ms) ALTER TABLE "mks_rate_bundle_discounts" ADD CONSTRAINT "fk_rails_e6bce7b79c"
33432
+ FOREIGN KEY ("chargeable_service_id")
33433
+ REFERENCES "mks_rate_chargeable_services" ("id")
33434
+ 
33435
+  (2.6ms) ALTER TABLE "mks_rate_bundle_discounts" ADD CONSTRAINT "fk_rails_72a3777128"
33436
+ FOREIGN KEY ("service_bundle_id")
33437
+ REFERENCES "mks_rate_service_bundles" ("id")
33438
+ 
33439
+  (2.7ms) ALTER TABLE "mks_rate_chargeable_service_discounts" ADD CONSTRAINT "fk_rails_688682e0b5"
33440
+ FOREIGN KEY ("chargeable_service_id")
33441
+ REFERENCES "mks_rate_chargeable_services" ("id")
33442
+ 
33443
+  (3.0ms) ALTER TABLE "mks_rate_chargeable_services" ADD CONSTRAINT "fk_rails_4e0ff36276"
33444
+ FOREIGN KEY ("service_delivery_unit_id")
33445
+ REFERENCES "mks_rate_service_delivery_units" ("id")
33446
+ 
33447
+  (3.7ms) ALTER TABLE "mks_rate_chargeable_services" ADD CONSTRAINT "fk_rails_c9195a9eb4"
33448
+ FOREIGN KEY ("service_type_id")
33449
+ REFERENCES "mks_rate_service_types" ("id")
33450
+ 
33451
+  (3.1ms) ALTER TABLE "mks_rate_chargeable_services" ADD CONSTRAINT "fk_rails_323d899c02"
33452
+ FOREIGN KEY ("base_unit_id")
33453
+ REFERENCES "mks_rate_unit_of_charges" ("id")
33454
+ 
33455
+  (3.6ms) ALTER TABLE "mks_rate_chargeable_services" ADD CONSTRAINT "fk_rails_a4bbde1129"
33456
+ FOREIGN KEY ("utilization_unit_id")
33457
+ REFERENCES "mks_rate_unit_of_charges" ("id")
33458
+ 
33459
+  (3.1ms) ALTER TABLE "mks_rate_rate_change_requests" ADD CONSTRAINT "fk_rails_1ec309ecbf"
33460
+ FOREIGN KEY ("approved_by_id")
33461
+ REFERENCES "mks_auth_users" ("id")
33462
+ 
33463
+  (3.1ms) ALTER TABLE "mks_rate_rate_change_requests" ADD CONSTRAINT "fk_rails_c0525c8963"
33464
+ FOREIGN KEY ("created_by_id")
33465
+ REFERENCES "mks_auth_users" ("id")
33466
+ 
33467
+  (2.8ms) ALTER TABLE "mks_rate_service_bundles" ADD CONSTRAINT "fk_rails_d6c823a60f"
33468
+ FOREIGN KEY ("service_delivery_unit_id")
33469
+ REFERENCES "mks_rate_service_delivery_units" ("id")
33470
+ 
33471
+  (2.7ms) ALTER TABLE "mks_rate_service_rates" ADD CONSTRAINT "fk_rails_8f0c330d29"
33472
+ FOREIGN KEY ("equipment_item_id")
33473
+ REFERENCES "mks_edm_equipment_items" ("id")
33474
+ 
33475
+  (2.5ms) ALTER TABLE "mks_rate_service_rates" ADD CONSTRAINT "fk_rails_a39cc6503a"
33476
+ FOREIGN KEY ("chargeable_service_id")
33477
+ REFERENCES "mks_rate_chargeable_services" ("id")
33478
+ 
33479
+  (7.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
33480
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
33481
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES (20180317043420)
33482
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES
33483
+ (20171215080758),
33484
+ (20171215081601),
33485
+ (20171216024320),
33486
+ (20171216041414),
33487
+ (20171216070855),
33488
+ (20171217081426),
33489
+ (20171220133548);
33490
+
33491
+ 
33492
+  (6.3ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
33493
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
33494
+  (0.7ms) BEGIN
33495
+ ActiveRecord::InternalMetadata Create (1.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2018-09-05 07:55:54.141935"], ["updated_at", "2018-09-05 07:55:54.141935"]]
33496
+  (2.1ms) COMMIT
33497
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
33498
+  (0.9ms) BEGIN
33499
+ ActiveRecord::InternalMetadata Update (1.1ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2018-09-05 07:55:54.152035"], ["key", "environment"]]
33500
+  (1.8ms) COMMIT