This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
ood_persistence/examples/web/database/schema.sql

6 lines
111 B
MySQL
Raw Normal View History

2021-10-12 18:14:02 +03:00
create table lists (
id serial primary key,
name text not null
);