summaryrefslogtreecommitdiffstats
path: root/migrations/2020-10-29-142339_create_artifacts/up.sql
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/2020-10-29-142339_create_artifacts/up.sql')
-rw-r--r--migrations/2020-10-29-142339_create_artifacts/up.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/migrations/2020-10-29-142339_create_artifacts/up.sql b/migrations/2020-10-29-142339_create_artifacts/up.sql
new file mode 100644
index 0000000..b133ee7
--- /dev/null
+++ b/migrations/2020-10-29-142339_create_artifacts/up.sql
@@ -0,0 +1,5 @@
+-- Your SQL goes here
+CREATE TABLE artifacts (
+ id SERIAL PRIMARY KEY NOT NULL,
+ path VARCHAR NOT NULL UNIQUE
+)