Browse code

Move sql into DCA

Benjamin Roth authored on21/03/2019 09:09:41
Showing1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,21 +0,0 @@
1
-
2
-
3
-
4
-
5
-CREATE TABLE `tl_page` (
6
-  `es_ext_agecheck` char(1) NOT NULL default '',
7
-  `es_ext_agecheck_exitPage` int(10) unsigned NOT NULL default '0',
8
-  `es_ext_agecheck_ignorePage` char(1) NOT NULL default '',
9
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10 0
\ No newline at end of file
Browse code

Initial commit

Benjamin Roth authored on21/03/2019 09:05:45
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,21 @@
1
+-- ********************************************************
2
+-- *                                                      *
3
+-- * IMPORTANT NOTE                                       *
4
+-- *                                                      *
5
+-- * Do not import this file manually but use the Contao  *
6
+-- * install tool to create and maintain database tables! *
7
+-- *                                                      *
8
+-- ********************************************************
9
+
10
+
11
+-- --------------------------------------------------------
12
+
13
+-- 
14
+-- Table `tl_page`
15
+-- 
16
+
17
+CREATE TABLE `tl_page` (
18
+  `es_ext_agecheck` char(1) NOT NULL default '',
19
+  `es_ext_agecheck_exitPage` int(10) unsigned NOT NULL default '0',
20
+  `es_ext_agecheck_ignorePage` char(1) NOT NULL default '',
21
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
0 22
\ No newline at end of file