Browse Source

dev en cours

rajah 7 tháng trước cách đây
mục cha
commit
60449226ad
1 tập tin đã thay đổi với 9 bổ sung0 xóa
  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;