srchub-old

srchub-old Commit Details


Date:2013-07-30 19:45:00 (11 years 4 months ago)
Author:Natalie Adams
Branch:default
Commit:839ade185c76
Parents: 6ea7cbeb3800
Message:Adding migration for project request

Changes:
Aindefero/src/IDF/Migrations/27ProjectRequest.php (full)

File differences

indefero/src/IDF/Migrations/27ProjectRequest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
function IDF_Migrations_27ProjectRequest_up($params=null)
{
$db = Pluf::db();
$schema = new Pluf_DB_Schema($db);
$schema->model = new IDF_ProjectRequest();
$schema->createTables();
}
function IDF_Migrations_27ProjectRequest_down($params=null)
{
$db = Pluf::db();
$schema = new Pluf_DB_Schema($db);
$schema->model = new IDF_ProjectRequest();
$schema->dropTables();
}

Archive Download the corresponding diff file

Branches

Tags

Page rendered in 0.41411s using 14 queries.