6 lines
229 B
SQL
6 lines
229 B
SQL
-- No need for this col since it is goign to be in "committees" anyways
|
|
ALTER TABLE servers DROP COLUMN server_name;
|
|
|
|
-- we do care about teh ID of the club/soc though
|
|
ALTER TABLE servers ADD COLUMN wolves_id integer DEFAULT 0;
|
|
|