mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7117fdb8ce
Ticket 2292 - Sequences, schemas, and fixtures r3917@asus: jeremy | 2005-10-15 10:43:24 -0700 fix pk assert r3918@asus: jeremy | 2005-10-15 10:46:52 -0700 rework query cache connection= override r3919@asus: jeremy | 2005-10-15 10:47:45 -0700 correct fixtures usage r3920@asus: jeremy | 2005-10-15 10:53:23 -0700 correct attr assignment r3921@asus: jeremy | 2005-10-15 12:59:10 -0700 sequences r3922@asus: jeremy | 2005-10-15 16:36:09 -0700 reset fixtures work with sequences r3951@asus: jeremy | 2005-10-15 23:23:12 -0700 cut down excess features r3952@asus: jeremy | 2005-10-15 23:40:30 -0700 don't test for PostgreSQL specifically git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2639 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
226 lines
4.5 KiB
SQL
226 lines
4.5 KiB
SQL
CREATE TABLE accounts (
|
|
id serial,
|
|
firm_id integer,
|
|
credit_limit integer,
|
|
PRIMARY KEY (id)
|
|
);
|
|
SELECT setval('accounts_id_seq', 100);
|
|
|
|
CREATE SEQUENCE companies_nonstd_seq START 101;
|
|
|
|
CREATE TABLE companies (
|
|
id integer DEFAULT nextval('companies_nonstd_seq'),
|
|
"type" character varying(50),
|
|
"ruby_type" character varying(50),
|
|
firm_id integer,
|
|
name character varying(50),
|
|
client_of integer,
|
|
rating integer default 1,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE developers_projects (
|
|
developer_id integer NOT NULL,
|
|
project_id integer NOT NULL,
|
|
joined_on date,
|
|
access_level integer default 1
|
|
);
|
|
|
|
CREATE TABLE developers (
|
|
id serial,
|
|
name character varying(100),
|
|
salary integer DEFAULT 70000,
|
|
created_at timestamp,
|
|
updated_at timestamp,
|
|
PRIMARY KEY (id)
|
|
);
|
|
SELECT setval('developers_id_seq', 100);
|
|
|
|
CREATE TABLE projects (
|
|
id serial,
|
|
name character varying(100),
|
|
type varchar(255),
|
|
PRIMARY KEY (id)
|
|
);
|
|
SELECT setval('projects_id_seq', 100);
|
|
|
|
CREATE TABLE topics (
|
|
id serial,
|
|
title character varying(255),
|
|
author_name character varying(255),
|
|
author_email_address character varying(255),
|
|
written_on timestamp without time zone,
|
|
bonus_time time,
|
|
last_read date,
|
|
content text,
|
|
approved boolean default true,
|
|
replies_count integer default 0,
|
|
parent_id integer,
|
|
"type" character varying(50),
|
|
PRIMARY KEY (id)
|
|
);
|
|
SELECT setval('topics_id_seq', 100);
|
|
|
|
CREATE TABLE customers (
|
|
id serial,
|
|
name character varying,
|
|
balance integer default 0,
|
|
address_street character varying,
|
|
address_city character varying,
|
|
address_country character varying,
|
|
gps_location character varying,
|
|
PRIMARY KEY (id)
|
|
);
|
|
SELECT setval('customers_id_seq', 100);
|
|
|
|
CREATE TABLE orders (
|
|
id serial,
|
|
name character varying,
|
|
billing_customer_id integer,
|
|
shipping_customer_id integer,
|
|
PRIMARY KEY (id)
|
|
);
|
|
SELECT setval('orders_id_seq', 100);
|
|
|
|
CREATE TABLE movies (
|
|
movieid serial,
|
|
name text,
|
|
PRIMARY KEY (movieid)
|
|
);
|
|
|
|
CREATE TABLE subscribers (
|
|
nick text NOT NULL,
|
|
name text,
|
|
PRIMARY KEY (nick)
|
|
);
|
|
|
|
CREATE TABLE booleantests (
|
|
id serial,
|
|
value boolean,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE defaults (
|
|
id serial,
|
|
modified_date date default CURRENT_DATE,
|
|
modified_date_function date default now(),
|
|
fixed_date date default '2004-01-01',
|
|
modified_time timestamp default CURRENT_TIMESTAMP,
|
|
modified_time_function timestamp default now(),
|
|
fixed_time timestamp default '2004-01-01 00:00:00.000000-00',
|
|
char1 char(1) default 'Y',
|
|
char2 character varying(50) default 'a varchar field',
|
|
char3 text default 'a text field'
|
|
);
|
|
|
|
CREATE TABLE auto_id_tests (
|
|
auto_id serial,
|
|
value integer,
|
|
PRIMARY KEY (auto_id)
|
|
);
|
|
|
|
CREATE TABLE entrants (
|
|
id serial,
|
|
name text,
|
|
course_id integer
|
|
);
|
|
|
|
CREATE TABLE colnametests (
|
|
id serial,
|
|
"references" integer NOT NULL
|
|
);
|
|
|
|
CREATE TABLE mixins (
|
|
id serial,
|
|
parent_id integer,
|
|
type character varying,
|
|
pos integer,
|
|
lft integer,
|
|
rgt integer,
|
|
root_id integer,
|
|
created_at timestamp,
|
|
updated_at timestamp,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE people (
|
|
id serial,
|
|
first_name text,
|
|
lock_version integer default 0,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE binaries (
|
|
id serial ,
|
|
data bytea,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE computers (
|
|
id serial,
|
|
developer integer NOT NULL,
|
|
"extendedWarranty" integer NOT NULL
|
|
);
|
|
|
|
CREATE TABLE posts (
|
|
id serial,
|
|
author_id integer,
|
|
title varchar(255),
|
|
type varchar(255),
|
|
body text
|
|
);
|
|
|
|
CREATE TABLE comments (
|
|
id serial,
|
|
post_id integer,
|
|
type varchar(255),
|
|
body text
|
|
);
|
|
|
|
CREATE TABLE authors (
|
|
id serial,
|
|
name varchar(255) default NULL
|
|
);
|
|
|
|
CREATE TABLE tasks (
|
|
id serial,
|
|
starting timestamp,
|
|
ending timestamp,
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE categories (
|
|
id serial,
|
|
name varchar(255),
|
|
type varchar(255)
|
|
);
|
|
|
|
CREATE TABLE categories_posts (
|
|
category_id integer NOT NULL,
|
|
post_id integer NOT NULL
|
|
);
|
|
|
|
CREATE TABLE fk_test_has_pk (
|
|
id INTEGER NOT NULL PRIMARY KEY
|
|
);
|
|
|
|
CREATE TABLE fk_test_has_fk (
|
|
id INTEGER NOT NULL PRIMARY KEY,
|
|
fk_id INTEGER NOT NULL REFERENCES fk_test_has_fk(id)
|
|
);
|
|
|
|
CREATE TABLE geometrics (
|
|
id serial primary key,
|
|
a_point point,
|
|
-- a_line line, (the line type is currently not implemented in postgresql)
|
|
a_line_segment lseg,
|
|
a_box box,
|
|
a_path path,
|
|
a_polygon polygon,
|
|
a_circle circle
|
|
);
|
|
|
|
CREATE TABLE keyboards (
|
|
key_number serial primary key,
|
|
"name" character varying(50)
|
|
);
|