Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 57808613502ef4fdf3c4e4ded1d8b9292c6a389e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13


-- Generated by Relational Schema Center on Fri Mar 12 14:32:14 CST 2004


CREATE TABLE ACCOUNT
  (ACCOUNTID VARCHAR(250) NOT NULL,
   TYPE1 INTEGER NOT NULL,
   BALANCE DOUBLE PRECISION NOT NULL,
   APR DOUBLE PRECISION NOT NULL);

ALTER TABLE ACCOUNT
  ADD CONSTRAINT PK_ACCOUNT PRIMARY KEY (ACCOUNTID);

Back to the top