Changeset 22974
- Timestamp:
- 2013/07/20 16:14:52 (10 years ago)
- Location:
- branches/version-2_13-dev/html/install/sql
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/html/install/sql/create_table_mysql.sql
r22843 r22974 74 74 zip01 text, 75 75 zip02 text, 76 zipcode text, 76 77 country_id int, 77 78 pref smallint, … … 89 90 law_zip01 text, 90 91 law_zip02 text, 92 law_zipcode text, 91 93 law_country_id int, 92 94 law_pref smallint, … … 480 482 name01 text NOT NULL, 481 483 name02 text NOT NULL, 482 kana01 text NOT NULL,483 kana02 text NOT NULL,484 kana01 text, 485 kana02 text, 484 486 zip01 text, 485 487 zip02 text, 488 zipcode text, 486 489 country_id int, 487 490 pref smallint, … … 538 541 order_zip01 text, 539 542 order_zip02 text, 543 order_zipcode text, 540 544 order_country_id int, 541 545 order_pref smallint, … … 554 558 birth_point numeric NOT NULL DEFAULT 0, 555 559 tax numeric, 556 order_tax_rate numeric,557 order_tax_rule smallint,558 560 total numeric, 559 561 payment_total numeric, … … 598 600 order_zip01 text, 599 601 order_zip02 text, 602 order_zipcode text, 600 603 order_country_id int, 601 604 order_pref smallint, … … 614 617 birth_point numeric NOT NULL DEFAULT 0, 615 618 tax numeric, 616 order_tax_rate numeric,617 order_tax_rule smallint,618 619 total numeric, 619 620 payment_total numeric, … … 661 662 shipping_zip01 text, 662 663 shipping_zip02 text, 664 shipping_zipcode text, 663 665 shipping_addr01 text, 664 666 shipping_addr02 text, … … 697 699 zip01 text, 698 700 zip02 text, 701 zipcode text, 699 702 country_id int, 700 703 pref smallint, -
branches/version-2_13-dev/html/install/sql/create_table_pgsql.sql
r22843 r22974 74 74 zip01 text, 75 75 zip02 text, 76 zipcode text, 76 77 country_id int, 77 78 pref smallint, … … 89 90 law_zip01 text, 90 91 law_zip02 text, 92 law_zipcode text, 91 93 law_country_id int, 92 94 law_pref smallint, … … 480 482 name01 text NOT NULL, 481 483 name02 text NOT NULL, 482 kana01 text NOT NULL,483 kana02 text NOT NULL,484 kana01 text, 485 kana02 text, 484 486 zip01 text, 485 487 zip02 text, 488 zipcode text, 486 489 country_id int, 487 490 pref smallint, … … 538 541 order_zip01 text, 539 542 order_zip02 text, 543 order_zipcode text, 540 544 order_country_id int, 541 545 order_pref smallint, … … 554 558 birth_point numeric NOT NULL DEFAULT 0, 555 559 tax numeric, 556 order_tax_rate numeric,557 order_tax_rule smallint,558 560 total numeric, 559 561 payment_total numeric, … … 598 600 order_zip01 text, 599 601 order_zip02 text, 602 order_zipcode text, 600 603 order_country_id int, 601 604 order_pref smallint, … … 614 617 birth_point numeric NOT NULL DEFAULT 0, 615 618 tax numeric, 616 order_tax_rate numeric,617 order_tax_rule smallint,618 619 total numeric, 619 620 payment_total numeric, … … 661 662 shipping_zip01 text, 662 663 shipping_zip02 text, 664 shipping_zipcode text, 663 665 shipping_addr01 text, 664 666 shipping_addr02 text, … … 697 699 zip01 text, 698 700 zip02 text, 701 zipcode text, 699 702 country_id int, 700 703 pref smallint, -
branches/version-2_13-dev/html/install/sql/insert_data.sql
r22960 r22974 1257 1257 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('DEFAULT_COUNTRY_ID', 392, 1413, 'デフォルト国コード ISO_3166-1に準拠'); 1258 1258 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('USE_NORMALIZE_HOSTNAME', true, 1414, 'ホスト名を正規化するか (true:する false:しない)'); 1259 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('FORM_COUNTRY_ENABLE', 'false', 1414, '各種フォームで国の指定を有効にする(true:有効 false:無効)'); 1260 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('OPTION_PRODUCT_TAX_RULE', '0', 1415, '商品ごとの税率設定(軽減税率対応 有効:1 無効:0) '); 1261 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('TAX_RULE_PRIORITY', '"product_id,product_class_id,pref_id,country_id"', 1416, '複数箇所の税率設定時における優先度設定。カンマ区切りスペース不可で記述。後に書いてあるキーに一致するほど優先される。デフォルト:''product_id,product_class_id,pref_id,country_id''(国>地域(県)>規格単位>商品単位)'); 1259 1262 1260 1263
Note: See TracChangeset
for help on using the changeset viewer.