Re: [GENERAL] create table within a schema

2011-05-06 Thread Simon Riggs
On Fri, May 6, 2011 at 12:10 PM, Vincent De Groote wrote: > Hello > > I have the following code: > > create schema test; > > create type test.my_type as enum ( 'a', 'b' ); > > create table test.my_table_1 ( >     id bigserial not null, >     type   test.my_type not null, >     length bigint, >

[GENERAL] create table within a schema

2011-05-06 Thread Vincent De Groote
Hello I have the following code: create schema test; create type test.my_type as enum ( 'a', 'b' ); create table test.my_table_1 ( id bigserial not null, type test.my_type not null, length bigint, primary key ( id ) ); create sequence test.my_sequence_id; create table