Files
huike-back/htyws_models/migrations/2022-01-13-073805_add_daka_tbl/up.sql
T

16 lines
280 B
SQL
Raw Normal View History

-- Your SQL goes here
create table daka
(
id varchar not null
constraint daka_pk
primary key,
daka_date timestamp not null,
student_id varchar not null,
beizhu varchar
);
create unique index daka_id_uindex
on daka (id);