File: create.sql

package info (click to toggle)
libsql-translator-perl 0.11011-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 15,380 kB
  • sloc: perl: 251,748; sql: 3,805; xml: 233; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
create table person (
  person_id INTEGER PRIMARY KEY,
  name varchar(20),
  age integer,
  weight double(11,2),
  iq tinyint default '0',
  description text,
  UNIQUE KEY UC_age_name (age)
) ENGINE=MyISAM;

create unique index u_name on person (name);

create table employee (
	position varchar(50),
	employee_id integer,
  job_title varchar(255),
	CONSTRAINT FK5302D47D93FE702E FOREIGN KEY (employee_id) REFERENCES person (person_id),
	PRIMARY KEY  (position, employee_id) USING BTREE
) ENGINE=InnoDB;

create table deleted (
  id integer
);