mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:27:03 +02:00
0.1.10
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user