updated .gitignore

This commit is contained in:
strawmanbobi
2019-02-07 20:11:55 +08:00
parent 127666421e
commit f5e6c17048
2 changed files with 3 additions and 28 deletions

3
.gitignore vendored
View File

@@ -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

View File

@@ -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
);