summaryrefslogtreecommitdiff
path: root/src/exchangedb/0002-wire_accounts.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchangedb/0002-wire_accounts.sql')
-rw-r--r--src/exchangedb/0002-wire_accounts.sql16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/exchangedb/0002-wire_accounts.sql b/src/exchangedb/0002-wire_accounts.sql
index d23ec7306..628bc599b 100644
--- a/src/exchangedb/0002-wire_accounts.sql
+++ b/src/exchangedb/0002-wire_accounts.sql
@@ -14,7 +14,7 @@
-- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
--
-CREATE TABLE IF NOT EXISTS wire_accounts
+CREATE TABLE wire_accounts
(payto_uri VARCHAR PRIMARY KEY
,master_sig BYTEA CHECK (LENGTH(master_sig)=64)
,is_active BOOLEAN NOT NULL
@@ -32,17 +32,3 @@ COMMENT ON COLUMN wire_accounts.last_change
IS 'Latest time when active status changed. Used to detect replays of old messages.';
-- "wire_accounts" has no sequence because it is a 'mutable' table
-- and is of no concern to the auditor
-
-
-INSERT INTO exchange_tables
- (name
- ,version
- ,action
- ,partitioned
- ,by_range)
- VALUES
- ('wire_accounts'
- ,'exchange-0002'
- ,'create'
- ,FALSE
- ,FALSE);