git.stg.codes
/
stg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Ticket 37. Fomatting fixed.
[stg.git]
/
projects
/
stargazer
/
inst
/
var
/
01-alter-02.mysql.sql
1
/*
2
* DB migration from v01 to v02 (mysql)
3
*/
4
5
ALTER TABLE tariffs ADD period VARCHAR(32) NOT NULL DEFAULT 'month';
6
7
CREATE TABLE info
8
(
9
version INTEGER NOT NULL
10
);
11
12
INSERT INTO info VALUES (1);