mirror of
https://github.com/Cernobor/oko-server.git
synced 2025-02-24 08:27:17 +00:00
17 lines
443 B
SQL
17 lines
443 B
SQL
DROP TABLE IF EXISTS users CASCADE;
|
|
CREATE TABLE IF NOT EXISTS users (
|
|
id integer PRIMARY KEY AUTOINCREMENT,
|
|
name text NOT NULL UNIQUE
|
|
);
|
|
INSERT INTO users(id, name) VALUES(0, 'system');
|
|
|
|
DROP TABLE IF EXISTS features;
|
|
CREATE TABLE IF NOT EXISTS features (
|
|
id integer PRIMARY KEY AUTOINCREMENT,
|
|
owner_id integer REFERENCES users(id) ON DELETE CASCADE,
|
|
name text NOT NULL,
|
|
description text,
|
|
category text,
|
|
geom text NOT NULL
|
|
);
|