repo.or.cz
/
akelos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing content type ordering when content_type is not defined.
[akelos.git]
/
test
/
fixtures
/
app
/
installers
/
file_installer.php
blob
ce2651cbe7ad5989fc8232d9cc80ad392a1d7c43
1
<
?php
2
3
class
FileInstaller
extends
AkInstaller
4
{
5
function
install
()
6
{
7
$this
->
createTable
(
'files'
,
'
8
id integer max=10 auto increment primary,
9
name string 50'
10
);
11
}
12
13
function
uninstall
()
14
{
15
$this
->
dropTable
(
'files'
,
array
(
'sequence'
=>
true
));
16
}
17
}
18
19
?
>