summaryrefslogtreecommitdiffstats
path: root/migrations/2020-06-23-134458_create_repositories
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-06-23 16:26:07 +0200
committerJokler <jokler@protonmail.com>2020-06-23 16:26:07 +0200
commitfc7bd403bf41d724bd8dc3bf3b827c592c539171 (patch)
tree1b816f68f1793dc8bf70e490196da6ae58d6f16a /migrations/2020-06-23-134458_create_repositories
downloadrgit-master.tar.gz
rgit-master.zip
Initial commitHEADmaster
Diffstat (limited to 'migrations/2020-06-23-134458_create_repositories')
-rw-r--r--migrations/2020-06-23-134458_create_repositories/down.sql1
-rw-r--r--migrations/2020-06-23-134458_create_repositories/up.sql8
2 files changed, 9 insertions, 0 deletions
diff --git a/migrations/2020-06-23-134458_create_repositories/down.sql b/migrations/2020-06-23-134458_create_repositories/down.sql
new file mode 100644
index 0000000..2c8ff6d
--- /dev/null
+++ b/migrations/2020-06-23-134458_create_repositories/down.sql
@@ -0,0 +1 @@
+DROP TABLE repositories;
diff --git a/migrations/2020-06-23-134458_create_repositories/up.sql b/migrations/2020-06-23-134458_create_repositories/up.sql
new file mode 100644
index 0000000..513d474
--- /dev/null
+++ b/migrations/2020-06-23-134458_create_repositories/up.sql
@@ -0,0 +1,8 @@
+CREATE TABLE repositories (
+ id SERIAL NOT NULL PRIMARY KEY,
+ name varchar(255) NOT NULL,
+ description varchar(255) NOT NULL,
+ owner bigint UNSIGNED NOT NULL,
+ created timestamp NOT NULL DEFAULT current_timestamp(),
+ CONSTRAINT fk_owner_id FOREIGN KEY (owner) REFERENCES users (id)
+);