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
/
picture_installer.php
blob
b548f9de925571d5ed76b7e55c16c50d83ce7e83
1
<
?php
2
3
class
PictureInstaller
extends
AkInstaller
4
{
5
function
install
()
6
{
7
$this
->
createTable
(
'pictures'
,
'
8
id,
9
property_id,
10
landlord_id,
11
title string(200)'
12
);
13
}
14
15
function
uninstall
()
16
{
17
$this
->
dropTable
(
'pictures'
,
array
(
'sequence'
=>
true
));
18
}
19
}
20
21
?
>