Skip to content

Commit a54f033

Browse files
adding database items
1 parent 32b4dd4 commit a54f033

File tree

3 files changed

+399
-0
lines changed

3 files changed

+399
-0
lines changed

admin/install/create_database.php

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
$sql = "--\n"
2+
3+
. "-- Database: `id231601_cms`\n"
4+
5+
. "--\n"
6+
7+
. "\n"
8+
9+
. "-- --------------------------------------------------------\n"
10+
11+
. "\n"
12+
13+
. "--\n"
14+
15+
. "-- Table structure for table `categories`\n"
16+
17+
. "--\n"
18+
19+
. "\n"
20+
21+
. "CREATE TABLE `categories` (\n"
22+
23+
. " `cat_id` int(11) NOT NULL,\n"
24+
25+
. " `cat_title` varchar(255) NOT NULL,\n"
26+
27+
. " `cat_image` varchar(255) NOT NULL DEFAULT \'no_category.png\'\n"
28+
29+
. ") ENGINE=InnoDB DEFAULT CHARSET=latin1";

admin/install/index.php

Whitespace-only changes.

0 commit comments

Comments
 (0)