5 |
|
-- ====================================================================== |
6 |
|
create table t_person |
7 |
|
(id integer not null, |
8 |
< |
name varchar (80) not null, |
9 |
< |
distinguished_name varchar (255) not null, |
10 |
< |
contact_info varchar (255) not null, |
8 |
> |
name varchar (1000) not null, |
9 |
> |
distinguished_name varchar (1000) not null, |
10 |
> |
contact_info varchar (1000) not null, |
11 |
|
created_at float not null, |
12 |
|
created_by integer not null, |
13 |
|
modified_at float not null, |
15 |
|
|
16 |
|
create table t_physics_group |
17 |
|
(id integer not null, |
18 |
< |
name varchar (80) not null, |
18 |
> |
name varchar (1000) not null, |
19 |
|
convenor integer /* not null? */, |
20 |
|
created_at float not null, |
21 |
|
created_by integer not null, |