added static php-crud-api
This commit is contained in:
BIN
seatmap-webapi/tests/fixtures/blog.sqlite
vendored
BIN
seatmap-webapi/tests/fixtures/blog.sqlite
vendored
Binary file not shown.
12
seatmap-webapi/tests/fixtures/blog_mysql.sql
vendored
12
seatmap-webapi/tests/fixtures/blog_mysql.sql
vendored
@@ -130,7 +130,7 @@ INSERT INTO `events` (`name`, `datetime`, `visitors`) VALUES
|
||||
('Launch', '2016-01-01 13:01:01', 0);
|
||||
|
||||
DROP VIEW IF EXISTS `tag_usage`;
|
||||
CREATE VIEW `tag_usage` AS select `tags`.`id` as `id`, `name`, count(`name`) AS `count` from `tags`, `post_tags` where `tags`.`id` = `post_tags`.`tag_id` group by `tags`.`id`, `name` order by `count` desc, `name`;
|
||||
CREATE VIEW `tag_usage` AS select `name`, count(`name`) AS `count` from `tags`, `post_tags` where `tags`.`id` = `post_tags`.`tag_id` group by `name` order by `count` desc, `name`;
|
||||
|
||||
DROP TABLE IF EXISTS `products`;
|
||||
CREATE TABLE `products` (
|
||||
@@ -167,16 +167,14 @@ CREATE TABLE `kunsthåndværk` (
|
||||
`Umlauts ä_ö_ü-COUNT` int(11) NOT NULL,
|
||||
`user_id` int(11) NOT NULL,
|
||||
`invisible` varchar(36),
|
||||
`invisible_id` varchar(36),
|
||||
PRIMARY KEY (`id`),
|
||||
CONSTRAINT `kunsthåndværk_Umlauts ä_ö_ü-COUNT_fkey` UNIQUE (`Umlauts ä_ö_ü-COUNT`),
|
||||
CONSTRAINT `kunsthåndværk_user_id_fkey` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`),
|
||||
CONSTRAINT `kunsthåndværk_invisible_id_fkey` FOREIGN KEY (`invisible_id`) REFERENCES `invisibles` (`id`)
|
||||
CONSTRAINT `kunsthåndværk_user_id_fkey` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
INSERT INTO `kunsthåndværk` (`id`, `Umlauts ä_ö_ü-COUNT`, `user_id`, `invisible`, `invisible_id`) VALUES
|
||||
('e42c77c6-06a4-4502-816c-d112c7142e6d', 1, 1, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d'),
|
||||
('e31ecfe6-591f-4660-9fbd-1a232083037f', 2, 2, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d');
|
||||
INSERT INTO `kunsthåndværk` (`id`, `Umlauts ä_ö_ü-COUNT`, `user_id`, `invisible`) VALUES
|
||||
('e42c77c6-06a4-4502-816c-d112c7142e6d', 1, 1, NULL),
|
||||
('e31ecfe6-591f-4660-9fbd-1a232083037f', 2, 2, NULL);
|
||||
|
||||
DROP TABLE IF EXISTS `invisibles`;
|
||||
CREATE TABLE `invisibles` (
|
||||
|
||||
26
seatmap-webapi/tests/fixtures/blog_pgsql.sql
vendored
26
seatmap-webapi/tests/fixtures/blog_pgsql.sql
vendored
@@ -127,7 +127,7 @@ CREATE TABLE events (
|
||||
-- Name: tag_usage; Type: VIEW; Schema: public; Owner: postgres; Tablespace:
|
||||
--
|
||||
|
||||
CREATE VIEW "tag_usage" AS select "tags"."id" as "id", "name", count("name") AS "count" from "tags", "post_tags" where "tags"."id" = "post_tags"."tag_id" group by "tags"."id", "name" order by "count" desc, "name";
|
||||
CREATE VIEW "tag_usage" AS select "name", count("name") AS "count" from "tags", "post_tags" where "tags"."id" = "post_tags"."tag_id" group by "name" order by "count" desc, "name";
|
||||
|
||||
--
|
||||
-- Name: products; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
|
||||
@@ -162,8 +162,7 @@ CREATE TABLE "kunsthåndværk" (
|
||||
id character varying(36) NOT NULL,
|
||||
"Umlauts ä_ö_ü-COUNT" integer NOT NULL,
|
||||
user_id integer NOT NULL,
|
||||
invisible character varying(36),
|
||||
invisible_id character varying(36)
|
||||
invisible character varying(36)
|
||||
);
|
||||
|
||||
--
|
||||
@@ -277,9 +276,9 @@ INSERT INTO "barcodes" ("product_id", "hex", "bin", "ip_address") VALUES
|
||||
-- Data for Name: kunsthåndværk; Type: TABLE DATA; Schema: public; Owner: postgres
|
||||
--
|
||||
|
||||
INSERT INTO "kunsthåndværk" ("id", "Umlauts ä_ö_ü-COUNT", "user_id", "invisible", "invisible_id") VALUES
|
||||
('e42c77c6-06a4-4502-816c-d112c7142e6d', 1, 1, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d'),
|
||||
('e31ecfe6-591f-4660-9fbd-1a232083037f', 2, 2, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d');
|
||||
INSERT INTO "kunsthåndværk" ("id", "Umlauts ä_ö_ü-COUNT", "user_id", "invisible") VALUES
|
||||
('e42c77c6-06a4-4502-816c-d112c7142e6d', 1, 1, NULL),
|
||||
('e31ecfe6-591f-4660-9fbd-1a232083037f', 2, 2, NULL);
|
||||
|
||||
--
|
||||
-- Data for Name: invisibles; Type: TABLE DATA; Schema: public; Owner: postgres
|
||||
@@ -457,13 +456,6 @@ CREATE INDEX "kunsthåndværk_Umlauts ä_ö_ü-COUNT_idx" ON "kunsthåndværk" U
|
||||
CREATE INDEX "kunsthåndværk_user_id_idx" ON "kunsthåndværk" USING btree (user_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: kunsthåndværk_invisible_id_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX "kunsthåndværk_invisible_id_idx" ON "kunsthåndværk" USING btree (invisible_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: comments_post_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
|
||||
--
|
||||
@@ -527,7 +519,6 @@ ALTER TABLE ONLY barcodes
|
||||
ALTER TABLE ONLY "kunsthåndværk"
|
||||
ADD CONSTRAINT "kunsthåndværk_Umlauts ä_ö_ü-COUNT_uc" UNIQUE ("Umlauts ä_ö_ü-COUNT");
|
||||
|
||||
|
||||
--
|
||||
-- Name: kunsthåndværk_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
|
||||
--
|
||||
@@ -536,13 +527,6 @@ ALTER TABLE ONLY "kunsthåndværk"
|
||||
ADD CONSTRAINT "kunsthåndværk_user_id_fkey" FOREIGN KEY (user_id) REFERENCES users(id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: kunsthåndværk_invisible_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY "kunsthåndværk"
|
||||
ADD CONSTRAINT "kunsthåndværk_invisible_id_fkey" FOREIGN KEY (invisible_id) REFERENCES invisibles(id);
|
||||
|
||||
--
|
||||
-- PostgreSQL database dump complete
|
||||
--
|
||||
|
||||
175
seatmap-webapi/tests/fixtures/blog_sqlite.sql
vendored
175
seatmap-webapi/tests/fixtures/blog_sqlite.sql
vendored
@@ -1,175 +0,0 @@
|
||||
-- Adminer 4.2.4 SQLite 3 dump
|
||||
|
||||
PRAGMA foreign_keys = off;
|
||||
|
||||
DROP TABLE IF EXISTS "categories";
|
||||
CREATE TABLE "categories" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"name" varchar(255) NOT NULL,
|
||||
"icon" blob NULL
|
||||
);
|
||||
|
||||
INSERT INTO "categories" ("id", "name", "icon") VALUES (1, 'announcement', NULL);
|
||||
INSERT INTO "categories" ("id", "name", "icon") VALUES (2, 'article', NULL);
|
||||
INSERT INTO "categories" ("id", "name", "icon") VALUES (3, 'comment', NULL);
|
||||
|
||||
DROP TABLE IF EXISTS "comments";
|
||||
CREATE TABLE "comments" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"post_id" integer NOT NULL,
|
||||
"message" VARCHAR(255) NOT NULL,
|
||||
"category_id" integer NOT NULL,
|
||||
FOREIGN KEY ("post_id") REFERENCES "posts" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT,
|
||||
FOREIGN KEY ("category_id") REFERENCES "categories" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT
|
||||
);
|
||||
|
||||
CREATE INDEX "comments_post_id" ON "comments" ("post_id");
|
||||
CREATE INDEX "comments_category_id" ON "comments" ("category_id");
|
||||
|
||||
INSERT INTO "comments" ("id", "post_id", "message", "category_id") VALUES (1, 1, 'great', 3);
|
||||
INSERT INTO "comments" ("id", "post_id", "message", "category_id") VALUES (2, 1, 'fantastic', 3);
|
||||
INSERT INTO "comments" ("id", "post_id", "message", "category_id") VALUES (3, 2, 'thank you', 3);
|
||||
INSERT INTO "comments" ("id", "post_id", "message", "category_id") VALUES (4, 2, 'awesome', 3);
|
||||
|
||||
DROP TABLE IF EXISTS "posts";
|
||||
CREATE TABLE "posts" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"user_id" integer NOT NULL,
|
||||
"category_id" integer NOT NULL,
|
||||
"content" varchar(255) NOT NULL,
|
||||
FOREIGN KEY ("user_id") REFERENCES "users" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT,
|
||||
FOREIGN KEY ("category_id") REFERENCES "categories" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT
|
||||
);
|
||||
|
||||
CREATE INDEX "posts_user_id" ON "posts" ("user_id");
|
||||
|
||||
CREATE INDEX "posts_category_id" ON "posts" ("category_id");
|
||||
|
||||
INSERT INTO "posts" ("id", "user_id", "category_id", "content") VALUES (1, 1, 1, 'blog started');
|
||||
INSERT INTO "posts" ("id", "user_id", "category_id", "content") VALUES (2, 1, 2, 'It works!');
|
||||
|
||||
DROP TABLE IF EXISTS "post_tags";
|
||||
CREATE TABLE "post_tags" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"post_id" integer NOT NULL,
|
||||
"tag_id" integer NOT NULL,
|
||||
FOREIGN KEY ("tag_id") REFERENCES "tags" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT,
|
||||
FOREIGN KEY ("post_id") REFERENCES "posts" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX "post_tags_post_id_tag_id" ON "post_tags" ("post_id", "tag_id");
|
||||
|
||||
INSERT INTO "post_tags" ("id", "post_id", "tag_id") VALUES (1, 1, 1);
|
||||
INSERT INTO "post_tags" ("id", "post_id", "tag_id") VALUES (2, 1, 2);
|
||||
INSERT INTO "post_tags" ("id", "post_id", "tag_id") VALUES (3, 2, 1);
|
||||
INSERT INTO "post_tags" ("id", "post_id", "tag_id") VALUES (4, 2, 2);
|
||||
|
||||
DROP TABLE IF EXISTS "tags";
|
||||
CREATE TABLE "tags" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"name" varchar(255) NOT NULL,
|
||||
"is_important" boolean NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO "tags" ("id", "name", "is_important") VALUES (1, 'funny', 0);
|
||||
INSERT INTO "tags" ("id", "name", "is_important") VALUES (2, 'important', 1);
|
||||
|
||||
DROP TABLE IF EXISTS "users";
|
||||
CREATE TABLE "users" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"username" varchar(255) NOT NULL,
|
||||
"password" varchar(255) NOT NULL,
|
||||
"location" text NULL
|
||||
);
|
||||
|
||||
INSERT INTO "users" ("id", "username", "password", "location") VALUES (1, 'user1', 'pass1', NULL);
|
||||
INSERT INTO "users" ("id", "username", "password", "location") VALUES (2, 'user2', '$2y$10$cg7/nswxVZ0cmVIsMB/pVOh1OfcHScBJGq7Xu4KF9dFEQgRZ8HWe.', NULL);
|
||||
|
||||
DROP TABLE IF EXISTS "countries";
|
||||
CREATE TABLE "countries" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"name" varchar(255) NOT NULL,
|
||||
"shape" text NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (1, 'Left', 'POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (2, 'Right', 'POLYGON ((70 10, 80 40, 60 40, 50 20, 70 10))');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (3, 'Point', 'POINT (30 10)');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (4, 'Line', 'LINESTRING (30 10, 10 30, 40 40)');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (5, 'Poly1', 'POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (6, 'Poly2', 'POLYGON ((35 10, 45 45, 15 40, 10 20, 35 10),(20 30, 35 35, 30 20, 20 30))');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (7, 'Mpoint', 'MULTIPOINT (10 40, 40 30, 20 20, 30 10)');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (8, 'Mline', 'MULTILINESTRING ((10 10, 20 20, 10 40),(40 40, 30 30, 40 20, 30 10))');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (9, 'Mpoly1', 'MULTIPOLYGON (((30 20, 45 40, 10 40, 30 20)),((15 5, 40 10, 10 20, 5 10, 15 5)))');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (10, 'Mpoly2', 'MULTIPOLYGON (((40 40, 20 45, 45 30, 40 40)),((20 35, 10 30, 10 10, 30 5, 45 20, 20 35),(30 20, 20 15, 20 25, 30 20)))');
|
||||
INSERT INTO "countries" ("id", "name", "shape") VALUES (11, 'Gcoll', 'GEOMETRYCOLLECTION(POINT(4 6),LINESTRING(4 6,7 10))');
|
||||
|
||||
DROP TABLE IF EXISTS "events";
|
||||
CREATE TABLE "events" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"name" varchar(255) NOT NULL,
|
||||
"datetime" datetime,
|
||||
"visitors" bigint
|
||||
);
|
||||
|
||||
INSERT INTO "events" ("id", "name", "datetime", "visitors") VALUES (1, 'Launch', '2016-01-01 13:01:01', 0);
|
||||
|
||||
DROP VIEW IF EXISTS "tag_usage";
|
||||
CREATE VIEW "tag_usage" AS select "tags"."id" as "id", "name", count("name") AS "count" from "tags", "post_tags" where "tags"."id" = "post_tags"."tag_id" group by "tags"."id", "name" order by "count" desc, "name";
|
||||
|
||||
DROP TABLE IF EXISTS "products";
|
||||
CREATE TABLE "products" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"name" varchar(255) NOT NULL,
|
||||
"price" decimal(10,2) NOT NULL,
|
||||
"properties" clob NOT NULL,
|
||||
"created_at" datetime NOT NULL,
|
||||
"deleted_at" datetime NULL
|
||||
);
|
||||
|
||||
INSERT INTO "products" ("id", "name", "price", "properties", "created_at") VALUES (1, 'Calculator', '23.01', '{"depth":false,"model":"TRX-120","width":100,"height":null}', '1970-01-01 01:01:01');
|
||||
|
||||
DROP TABLE IF EXISTS "barcodes2";
|
||||
DROP TABLE IF EXISTS "barcodes";
|
||||
CREATE TABLE "barcodes" (
|
||||
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
"product_id" integer NOT NULL,
|
||||
"hex" varchar(255) NOT NULL,
|
||||
"bin" blob NOT NULL,
|
||||
"ip_address" varchar(15),
|
||||
FOREIGN KEY ("product_id") REFERENCES "products" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT
|
||||
);
|
||||
|
||||
INSERT INTO "barcodes" ("id", "product_id", "hex", "bin", "ip_address") VALUES (1, 1, '00ff01', 'AP8B', '127.0.0.1');
|
||||
|
||||
DROP TABLE IF EXISTS "kunsthåndværk";
|
||||
CREATE TABLE "kunsthåndværk" (
|
||||
"id" varchar(36) NOT NULL PRIMARY KEY,
|
||||
"Umlauts ä_ö_ü-COUNT" integer NOT NULL UNIQUE,
|
||||
"user_id" integer NOT NULL,
|
||||
"invisible" varchar(36),
|
||||
"invisible_id" varchar(36),
|
||||
FOREIGN KEY ("user_id") REFERENCES "users" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT,
|
||||
FOREIGN KEY ("invisible_id") REFERENCES "invisibles" ("id") ON DELETE RESTRICT ON UPDATE RESTRICT
|
||||
);
|
||||
|
||||
INSERT INTO "kunsthåndværk" ("id", "Umlauts ä_ö_ü-COUNT", "user_id", "invisible", "invisible_id") VALUES ('e42c77c6-06a4-4502-816c-d112c7142e6d', 1, 1, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d');
|
||||
INSERT INTO "kunsthåndværk" ("id", "Umlauts ä_ö_ü-COUNT", "user_id", "invisible", "invisible_id") VALUES ('e31ecfe6-591f-4660-9fbd-1a232083037f', 2, 2, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d');
|
||||
|
||||
DROP TABLE IF EXISTS "invisibles";
|
||||
CREATE TABLE "invisibles" (
|
||||
"id" varchar(36) NOT NULL PRIMARY KEY
|
||||
);
|
||||
|
||||
INSERT INTO "invisibles" ("id") VALUES ('e42c77c6-06a4-4502-816c-d112c7142e6d');
|
||||
|
||||
DROP TABLE IF EXISTS "nopk";
|
||||
CREATE TABLE "nopk" (
|
||||
"id" varchar(36) NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO "nopk" ("id") VALUES ('e42c77c6-06a4-4502-816c-d112c7142e6d');
|
||||
|
||||
PRAGMA foreign_keys = on;
|
||||
|
||||
--
|
||||
13
seatmap-webapi/tests/fixtures/blog_sqlsrv.sql
vendored
13
seatmap-webapi/tests/fixtures/blog_sqlsrv.sql
vendored
@@ -246,7 +246,7 @@ GO
|
||||
|
||||
CREATE VIEW [tag_usage]
|
||||
AS
|
||||
SELECT top 100 PERCENT tags.id as id, name, COUNT_BIG(name) AS [count] FROM tags, post_tags WHERE tags.id = post_tags.tag_id GROUP BY tags.id, name ORDER BY [count] DESC, name
|
||||
SELECT top 100 PERCENT name, COUNT_BIG(name) AS [count] FROM tags, post_tags WHERE tags.id = post_tags.tag_id GROUP BY name ORDER BY [count] DESC, name
|
||||
GO
|
||||
|
||||
DROP SEQUENCE IF EXISTS [products_id_seq]
|
||||
@@ -285,7 +285,6 @@ CREATE TABLE [kunsthåndværk](
|
||||
[Umlauts ä_ö_ü-COUNT] [int] NOT NULL,
|
||||
[user_id] [int] NOT NULL,
|
||||
[invisible] [nvarchar](36),
|
||||
[invisible_id] [nvarchar](36),
|
||||
CONSTRAINT [kunsthåndværk_pkey] PRIMARY KEY CLUSTERED([id] ASC)
|
||||
)
|
||||
GO
|
||||
@@ -373,9 +372,9 @@ GO
|
||||
INSERT [barcodes] ([product_id], [hex], [bin], [ip_address]) VALUES (1, N'00ff01', 0x00ff01, N'127.0.0.1')
|
||||
GO
|
||||
|
||||
INSERT [kunsthåndværk] ([id], [Umlauts ä_ö_ü-COUNT], [user_id], [invisible], [invisible_id]) VALUES ('e42c77c6-06a4-4502-816c-d112c7142e6d', 1, 1, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d')
|
||||
INSERT [kunsthåndværk] ([id], [Umlauts ä_ö_ü-COUNT], [user_id], [invisible]) VALUES ('e42c77c6-06a4-4502-816c-d112c7142e6d', 1, 1, NULL)
|
||||
GO
|
||||
INSERT [kunsthåndværk] ([id], [Umlauts ä_ö_ü-COUNT], [user_id], [invisible], [invisible_id]) VALUES ('e31ecfe6-591f-4660-9fbd-1a232083037f', 2, 2, NULL, 'e42c77c6-06a4-4502-816c-d112c7142e6d')
|
||||
INSERT [kunsthåndværk] ([id], [Umlauts ä_ö_ü-COUNT], [user_id], [invisible]) VALUES ('e31ecfe6-591f-4660-9fbd-1a232083037f', 2, 2, NULL)
|
||||
GO
|
||||
|
||||
INSERT [invisibles] ([id]) VALUES ('e42c77c6-06a4-4502-816c-d112c7142e6d')
|
||||
@@ -434,9 +433,3 @@ REFERENCES [users] ([id])
|
||||
GO
|
||||
ALTER TABLE [kunsthåndværk] CHECK CONSTRAINT [kunsthåndværk_user_id_fkey]
|
||||
GO
|
||||
|
||||
ALTER TABLE [kunsthåndværk] WITH CHECK ADD CONSTRAINT [kunsthåndværk_invisible_id_fkey] FOREIGN KEY([invisible_id])
|
||||
REFERENCES [invisibles] ([id])
|
||||
GO
|
||||
ALTER TABLE [kunsthåndværk] CHECK CONSTRAINT [kunsthåndværk_invisible_id_fkey]
|
||||
GO
|
||||
|
||||
Reference in New Issue
Block a user