up.sql 322 B

123456789
  1. -- Your SQL goes here
  2. CREATE TABLE grid_rev_snapshot (
  3. snapshot_id TEXT NOT NULL PRIMARY KEY DEFAULT '',
  4. object_id TEXT NOT NULL DEFAULT '',
  5. rev_id BIGINT NOT NULL DEFAULT 0,
  6. base_rev_id BIGINT NOT NULL DEFAULT 0,
  7. timestamp BIGINT NOT NULL DEFAULT 0,
  8. data BLOB NOT NULL DEFAULT (x'')
  9. );