This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Foodloop-Server/share/ddl/SQLite/deploy/3/001-auto-__VERSION.sql

19 lines
451 B
MySQL
Raw Normal View History

2017-08-14 12:45:54 +01:00
--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Mon Aug 14 12:22:58 2017
--
;
BEGIN TRANSACTION;
--
-- Table: dbix_class_deploymenthandler_versions
--
CREATE TABLE dbix_class_deploymenthandler_versions (
id INTEGER PRIMARY KEY NOT NULL,
version varchar(50) NOT NULL,
ddl text,
upgrade_sql text
);
CREATE UNIQUE INDEX dbix_class_deploymenthandler_versions_version ON dbix_class_deploymenthandler_versions (version);
COMMIT;