This commit is contained in:
SJ
2011-12-07 15:24:52 +01:00
parent b8e321fc9d
commit 64dd86e169
9 changed files with 172 additions and 85 deletions

View File

@ -1,3 +1,7 @@
create database `piler` character set 'utf8';
use `piler`;
drop table if exists `sph_counter`;
create table if not exists `sph_counter` (
`counter_id` int not null,
@ -5,6 +9,7 @@ create table if not exists `sph_counter` (
primary key (`counter_id`)
);
drop table if exists `sph_index`;
create table if not exists `sph_index` (
`id` bigint not null,