Initial
This commit is contained in:
10
internal/storage/migrations.go
Normal file
10
internal/storage/migrations.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package storage
|
||||
|
||||
const SchemaSQL = `
|
||||
CREATE TABLE IF NOT EXISTS status_lists (
|
||||
status_id TEXT PRIMARY KEY,
|
||||
bit_length INTEGER NOT NULL,
|
||||
data_encrypted BYTEA NOT NULL,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
`
|
||||
Reference in New Issue
Block a user