mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-10 15:21:01 +00:00
12 lines
338 B
MySQL
12 lines
338 B
MySQL
|
CREATE TABLE "#__patchtester_tests" (
|
||
|
"id" serial NOT NULL,
|
||
|
"pull_id" bigint NOT NULL,
|
||
|
"data" text NOT NULL,
|
||
|
"patched_by" bigint NOT NULL,
|
||
|
"applied" bigint NOT NULL,
|
||
|
"applied_version" character varying(25) NOT NULL,
|
||
|
"rating" bigint NOT NULL,
|
||
|
"comments" character varying(3000) DEFAULT '' NOT NULL,
|
||
|
PRIMARY KEY ("id")
|
||
|
);
|