Browse Source

dev en cours

rajah 7 months ago
parent
commit
60449226ad
1 changed files with 9 additions and 0 deletions
  1. 9 0
      postgresql/tables/webcams.sql

+ 9 - 0
postgresql/tables/webcams.sql

@@ -0,0 +1,9 @@
+CREATE TABLE IF NOT EXISTS vote.webcams
+(
+  id integer NOT NULL PRIMARY KEY,
+  flag_updated boolean DEFAULT true,
+  crc32 bigint NOT NULL,
+  vue bytea NOT NULL
+)
+TABLESPACE vote;
+ALTER TABLE IF EXISTS vote.webcams OWNER to vote;