File TODO changed (mode: 100644) (index 22f8b92..bfa7e54) |
1 |
1 |
== BEFORE FIRST RELEASE! == |
== BEFORE FIRST RELEASE! == |
|
2 |
|
[ ] When we are altering keys table and we upgrade, the file will not be rebuilt. |
|
3 |
|
We have to dirty it. |
|
4 |
|
[ ] Do not prevent double ssh keys by database. Use the PHP code. |
2 |
5 |
[ ] Fix this shit. isset($_REQUEST['rights']) ? rg_rights_a2s(rg_var_str("rights")) : $rg |
[ ] Fix this shit. isset($_REQUEST['rights']) ? rg_rights_a2s(rg_var_str("rights")) : $rg |
3 |
6 |
[ ] when you add a bug, state any shoul not be present. |
[ ] when you add a bug, state any shoul not be present. |
4 |
7 |
[ ] bug tracker is private? |
[ ] bug tracker is private? |
File inc/struct.inc.php changed (mode: 100644) (index 66073e6..dccf574) |
... |
... |
$rg_sql_struct[8]['other'] = array( |
188 |
188 |
. " ADD last_ip TEXT NOT NULL DEFAULT ''" |
. " ADD last_ip TEXT NOT NULL DEFAULT ''" |
189 |
189 |
); |
); |
190 |
190 |
|
|
|
191 |
|
$rg_sql_struct[9] = array(); |
|
192 |
|
$rg_sql_struct[9]['tables'] = array(); |
|
193 |
|
$rg_sql_struct[9]['other'] = array( |
|
194 |
|
"allow duplicate ssh keys" => "ALTER TABLE keys" |
|
195 |
|
. " DROP CONSTRAINT IF EXISTS keys_key_key", |
|
196 |
|
"allow duplicate repos names" => "ALTER TABLE repos" |
|
197 |
|
. " DROP CONSTRAINT IF EXISTS repos_name_key", |
|
198 |
|
"index on repos names" => "CREATE INDEX repos_i_name ON repos(name)" |
|
199 |
|
); |
|
200 |
|
|
191 |
201 |
|
|
192 |
202 |
// This must be the last line |
// This must be the last line |
193 |
203 |
$rg_sql_schema_ver = count($rg_sql_struct); |
$rg_sql_schema_ver = count($rg_sql_struct); |