初始化项目
This commit is contained in:
14
0_材料准备/table.sql
Normal file
14
0_材料准备/table.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
create table if not exists target
|
||||
(
|
||||
code varchar(50) not null primary key comment '编码',
|
||||
name varchar(100) not null comment '名称',
|
||||
description varchar(500) comment '描述',
|
||||
market varchar(10) not null default '' comment '市场',
|
||||
type varchar(10) not null comment '类型: stock, fund, etf'
|
||||
);
|
||||
|
||||
create table if not exists daily
|
||||
(
|
||||
code varchar(50) not null comment '编码',
|
||||
date date not null comment '日期'
|
||||
);
|
||||
Reference in New Issue
Block a user