migra/sample/database/schema.sql

7 lines
209 B
MySQL
Raw Normal View History

2021-02-01 23:49:26 +03:00
create table tags (
id serial primary key,
name text not null unique check(length(name) > 0),
created_at timestamp not null default current_timestamp
);