Ignore:
Timestamp:
2014/05/30 16:56:25 (12 years ago)
Author:
shutta
Message:

#2488 mtb_ownersstore_ipsの削除
mtb_ownersstore_ipsマスターに関連する部分を全て削除。

Location:
branches/version-2_13-dev/html/install/sql
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/html/install/sql/comment_set_pgsql_2.13.sql

    r23359 r23475  
    6464COMMENT ON COLUMN dtb_other_deliv.fax02 IS 'FAX(市内局番)'; 
    6565COMMENT ON COLUMN dtb_other_deliv.fax03 IS 'FAX(局番)'; 
    66  
    67 COMMENT ON TABLE mtb_ownersstore_ips IS 'オーナーズストアIPアドレス'; 
    68 COMMENT ON COLUMN mtb_ownersstore_ips.id IS 'ID'; 
    69 COMMENT ON COLUMN mtb_ownersstore_ips.name IS '名称'; 
    70 COMMENT ON COLUMN mtb_ownersstore_ips.rank IS '表示順'; 
    7166 
    7267COMMENT ON TABLE mtb_ownersstore_err IS 'オーナーズストアエラー種別'; 
  • branches/version-2_13-dev/html/install/sql/create_table_pgsql.sql

    r23404 r23475  
    10871087); 
    10881088 
    1089 CREATE TABLE mtb_ownersstore_ips ( 
    1090     id smallint, 
    1091     name text, 
    1092     rank smallint NOT NULL DEFAULT 0, 
    1093     PRIMARY KEY (id) 
    1094 ); 
    1095  
    10961089CREATE TABLE mtb_constants ( 
    10971090    id text, 
  • branches/version-2_13-dev/html/install/sql/drop_table.sql

    r22736 r23475  
    7777DROP TABLE mtb_allowed_tag; 
    7878DROP TABLE mtb_ownersstore_err; 
    79 DROP TABLE mtb_ownersstore_ips; 
    8079DROP TABLE dtb_maker; 
    8180DROP TABLE dtb_maker_count; 
  • branches/version-2_13-dev/html/install/sql/insert_data.sql

    r23330 r23475  
    1212INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (1, 3, 'おすすめ商品', 'recommend.tpl', 'recommend', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/recommend.php', 0); 
    1313INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (1, 4, 'カテゴリ', 'category.tpl', 'category', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/category.php', 0); 
     14INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (1, 5, 'ログイン', 'login.tpl', 'login', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/login.php', 0); 
     15INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (1, 6, '【ヘッダー】ログイン', 'login_header.tpl', 'login_header', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/login_header.php', 0); 
    1416INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 1, '新着情報', 'news.tpl', 'news', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/news.php', 0); 
    1517INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 2, 'ログイン', 'login.tpl', 'login', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/login.php', 0); 
     
    877879INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2009', 'ファイルの書き込みに失敗しました。<br />・書き込み権限が正しく設定されていません。<br />・data/downloads/tmpディレクトリに書き込み権限があるかどうか確認してください', 16); 
    878880INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2010', 'ファイルの書き込みに失敗しました。<br />・「ログ管理」で詳細を確認してください。', 17); 
    879  
    880 INSERT INTO mtb_ownersstore_ips (id, name, rank) VALUES ('0', '210.188.195.143', 0); 
    881881 
    882882INSERT INTO mtb_page_max (id, name, rank) VALUES (10, '10', 0); 
Note: See TracChangeset for help on using the changeset viewer.