summary refs log tree commit diff
path: root/sql/SQLite/deploy/2/001-auto-__VERSION.sql
blob: 8b1bc1f772b77e7ebcb691f3886b46f483cbd9d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- 
-- Created by SQL::Translator::Producer::SQLite
-- Created on Mon Jan 24 21:26:41 2011
-- 

;
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