|
|
@@ -0,0 +1,15 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
|
|
|
+ *
|
|
|
+ */
|
|
|
+
|
|
|
+-- liquibase formatted sql
|
|
|
+
|
|
|
+-- changeset apg:1748693389496-1
|
|
|
+CREATE TABLE organisation
|
|
|
+(
|
|
|
+ id BIGINT AUTO_INCREMENT NOT NULL,
|
|
|
+ name VARCHAR(255) NULL,
|
|
|
+ CONSTRAINT pk_organisation PRIMARY KEY (id)
|
|
|
+);
|
|
|
+
|