diff options
author | linuxpoet <linuxpoet@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-06 03:41:10 +0000 |
---|---|---|
committer | linuxpoet <linuxpoet@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-06 03:41:10 +0000 |
commit | d04a93a26ce181d3e6395867f6cc8c6e98bda8fa (patch) | |
tree | 0801a3762a210b96b1ca90411e48fba929f5f159 | |
parent | b10717a076a31fe2500fe1bdc15a6ceabce24aac (diff) |
remove duplicate transactions table creation
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@192 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | sql/Pg-tables.sql | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sql/Pg-tables.sql b/sql/Pg-tables.sql index 9cd3f939..42471a15 100755 --- a/sql/Pg-tables.sql +++ b/sql/Pg-tables.sql @@ -566,11 +566,6 @@ last_used TIMESTAMP default now() ); -create table transactions ( - id int PRIMARY KEY, - table_name text -); - insert into transactions (id, table_name) SELECT id, 'ap' FROM ap; CREATE RULE ap_id_track_i AS ON insert TO ap |