--- /dev/null
+DROP TABLE IF EXISTS continent;
+CREATE TABLE IF NOT EXISTS continent (
+ id char(3) PRIMARY KEY,
+ name varchar(200)
+);
+GRANT ALL ON TABLE continent TO www;
+GRANT ALL ON TABLE continent TO nico;
+GRANT ALL ON TABLE continent TO root;
+BEGIN TRANSACTION;
+DELETE FROM continent;
+INSERT INTO continent VALUES ('AF','Africa');
+INSERT INTO continent VALUES ('AS','Asia');
+INSERT INTO continent VALUES ('EU','Europe');
+INSERT INTO continent VALUES ('NA','North America');
+INSERT INTO continent VALUES ('OC','Oceania');
+INSERT INTO continent VALUES ('SA','South America');
+INSERT INTO continent VALUES ('AN','Antarctica');
+COMMIT;