if exists (select * from information_schema.tables where table_name='nuke_works' and schema_name = current_user )
drop table nuke_works
CREATE TABLE nuke_words (
word_id int NOT NULL identity,
word char(100) NOT NULL,
replacement char(100) NOT NULL,
PRIMARY KEY (word_id)
)