From f5e6c17048917c3b2709ffc7bcc6b2f3055f6489 Mon Sep 17 00:00:00 2001 From: strawmanbobi Date: Thu, 7 Feb 2019 20:11:55 +0800 Subject: [PATCH] updated .gitignore --- .gitignore | 3 +++ db_init.sql | 28 ---------------------------- 2 files changed, 3 insertions(+), 28 deletions(-) delete mode 100644 db_init.sql diff --git a/.gitignore b/.gitignore index ca161eb..e3f3a1b 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ .mtj.tmp/ # Package Files # +*.jar *.war *.nar *.ear @@ -88,4 +89,6 @@ fabric.properties # Android studio 3.1+ serialized cache file .idea/caches/build_file_checksums.ser +# Customized ignore files target +application.properties diff --git a/db_init.sql b/db_init.sql deleted file mode 100644 index 5332117..0000000 --- a/db_init.sql +++ /dev/null @@ -1,28 +0,0 @@ -create table irext_collect.collect_remote -( - id int auto_increment, - category_id int null, - category_name varchar(20) null, - brand_id int null, - brand_name varchar(20) null, - city_code varchar(6) null, - city_name varchar(20) null, - operator_id int null, - operator_name varchar(32) null, - remote_map varchar(128) null, - protocol varchar(64) null, - remote varchar(64) null, - constraint collect_remote_pk - primary key (id) -) -comment 'Collected Remote Info'; - -create table irext_collect.collect_key -( - id int auto_increment - primary key, - collect_remote_id int not null, - key_id int not null, - key_name varchar(20) not null, - key_value text not null -);