rgncycle-db/sql/create-entities-table.sql

7 lines
129 B
SQL

---
DROP TABLE IF EXISTS entities;
---
CREATE TABLE IF NOT EXISTS entities(
id BIGSERIAL PRIMARY KEY,
name TEXT NOT NULL);