Projects/nettsiden-old
Projects
/
nettsiden-old
Archived
8
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
nettsiden-old/dist/pvv.sql

23 lines
378 B
MySQL
Raw Normal View History

CREATE TABLE "events" (
2017-10-07 22:18:06 +02:00
"id" INTEGER PRIMARY KEY AUTOINCREMENT,
"name" TEXT,
"start" TEXT,
"stop" TEXT,
"organiser" TEXT,
2016-08-29 20:14:23 +02:00
"location" TEXT,
"description" TEXT
);
CREATE TABLE "projects" (
"id" INTEGER PRIMARY KEY AUTOINCREMENT,
"name" TEXT,
"owner" TEXT,
"owneruname" TEXT,
"description" TEXT,
"active" BOOLEAN
2017-11-11 17:00:08 +01:00
);
CREATE TABLE "users" (
"uname" TEXT,
"groups" INT DEFAULT 0
);