srchub

srchub Commit Details


Date:2013-07-30 19:45:33 (11 years 4 months ago)
Author:Natalie Adams
Branch:master
Commit:f62d20f0d19785335546010e2e0d312c1ee6e258
Parents: d4994854c95f154d857d3bddf1e34f6d3910ddb2
Message:Adding migration for project request

Changes:

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

Number of commits:
Page rendered in 0.06126s using 14 queries.