📄 create.sql
字号:
drop table if exists users;drop table if exists line_items;drop table if exists orders;drop table if exists products;create table products ( id int not null auto_increment, title varchar(100) not null, description text not null, image_url varchar(200) not null, price decimal(10,2) not null, date_available datetime not null, primary key (id));/*START:orders*/create table orders ( id int not null auto_increment, name varchar(100) not null, email varchar(255) not null, address text not null, pay_type char(10) not null, when_shipped timestamp null, primary key (id));/*END:orders*/create table line_items ( id int not null auto_increment, product_id int not null, order_id int not null, quantity int not null default 0, unit_price float(10,2) not null, constraint fk_items_product foreign key (product_id) references products(id), constraint fk_items_order foreign key (order_id) references orders(id), primary key (id));create table users ( id int not null auto_increment, name varchar(100) not null, hashed_password char(40) null, primary key (id));drop table if exists ticket_collaterals;drop table if exists tickets;create table tickets ( id int not null auto_increment, from_email varchar(250) not null, initial_report text, primary key (id));create table ticket_collaterals ( id int not null auto_increment, name varchar(100) not null, body text, ticket_id int, primary key (id), constraint fk_ticket foreign key (ticket_id) references tickets(id));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -