Re: diff's between creations of tables

Started by Dr. Evilover 24 years ago1 messagesgeneral
Jump to latest
#1Dr. Evil
drevil@sidereal.kz

They are both the same, as far as I know. I usually make my table
definition file like this:

DROP SEQUENCE mytable_number_seq;
DROP TABLE mytable;
CREATE TABLE mytable (
number SERIAL
);