Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.txt 314B

123456789101112
  1. CREATE TABLE "topic" (
  2. "id" serial NOT NULL PRIMARY KEY,
  3. "forum_id" integer NOT NULL,
  4. "subject" varchar(255) NOT NULL
  5. );
  6. ALTER TABLE "topic"
  7. ADD CONSTRAINT forum_id FOREIGN KEY ("forum_id")
  8. REFERENCES "forum" ("id");
  9. -- Initials
  10. insert into "topic" ("forum_id", "subject")
  11. values (2, 'D''artagnian');