Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

CREATE TABLE Client_permissions (
id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
client_id BIGINT NOT NULL,
permissions TEXT NOT NULL,
comment VARCHAR(100) NULL,
FOREIGN KEY (client_id) REFERENCES Client(id) ON DELETE CASCADE
) ENGINE=InnoDB COLLATE=utf8_bin;

 Tabel: SKRSViewMapping

^^Tilbage til toppen^^

...