[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[2299] trunk/sql/Pg-database.sql
- Subject: SF.net SVN: ledger-smb:[2299] trunk/sql/Pg-database.sql
- From: ..hidden..
- Date: Fri, 22 Aug 2008 05:28:48 +0000
Revision: 2299
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=2299&view=rev
Author: einhverfr
Date: 2008-08-22 05:28:47 +0000 (Fri, 22 Aug 2008)
Log Message:
-----------
Correcting load issues with Pg-database.sql
Also adding NOT NULL constraints to ar.entity_credit_account and ap.entity_credit_account
Modified Paths:
--------------
trunk/sql/Pg-database.sql
Modified: trunk/sql/Pg-database.sql
===================================================================
--- trunk/sql/Pg-database.sql 2008-08-21 23:30:49 UTC (rev 2298)
+++ trunk/sql/Pg-database.sql 2008-08-22 05:28:47 UTC (rev 2299)
@@ -293,6 +293,15 @@
COMMENT ON TABLE company_to_contact IS $$ To keep track of the relationship between multiple contact methods and a single company $$;
+CREATE TABLE entity_bank_account (
+ id serial not null,
+ entity_id int not null references entity(id) ON DELETE CASCADE,
+ bic varchar,
+ iban varchar,
+ UNIQUE (id),
+ PRIMARY KEY (entity_id, bic, iban)
+);
+
CREATE TABLE entity_credit_account (
id serial not null unique,
entity_id int not null references entity(id) ON DELETE CASCADE,
@@ -364,7 +373,7 @@
CREATE TABLE note (id serial primary key, note_class integer not null references note_class(id),
note text not null, vector tsvector not null,
created timestamp not null default now(),
- created_by text DEFAULT SESSION_USER;
+ created_by text DEFAULT SESSION_USER,
ref_key integer not null);
CREATE TABLE entity_note(entity_id int references entity(id)) INHERITS (note);
@@ -589,15 +598,6 @@
*/
-CREATE TABLE entity_bank_account (
- id serial not null,
- entity_id int not null references entity(id) ON DELETE CASCADE,
- bic varchar,
- iban varchar,
- UNIQUE (id),
- PRIMARY KEY (entity_id, bic, iban)
-);
-
CREATE VIEW customer AS
SELECT
c.id,
@@ -777,7 +777,7 @@
terms int2 DEFAULT 0,
description text,
force_closed bool,
- entity_credit_account int references entity_credit_account(id)
+ entity_credit_account int references entity_credit_account(id) NOT NULL
);
COMMENT ON COLUMN ap.entity_id IS $$ Used to be customer_id, but customer is now metadata. You need to push to entity $$;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.