mentors

mentors Commit Details


Date:2014-07-05 22:08:53 (10 years 5 months ago)
Author:Right Or Wrong
Branch:develop
Commit:ff0836b050f070ef0a047e83b1acbd3ad5e5ca14
Parents: a5031c18b0ebec499e9d40ccaa322fa53f33c0ee
Message:added a migration to create a projects table and a model for the projects

Changes:

File differences

app/database/migrations/2014_07_06_025411_create_projects_listing_table.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProjectsListingTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('projects', function(Blueprint $table)
{
$table->increments('id');
$table->string('title', 32);
$table->text('link');
$table->string('language');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('projects');
}
}
vendor/autoload.php
44
55
66
7
7
require_once __DIR__ . '/composer' . '/autoload_real.php';
return ComposerAutoloaderInit594f653b238ee2144ed34eecbabdcc06::getLoader();
return ComposerAutoloaderInitbe43bf07309bb7897b8d2ad788d8b295::getLoader();
vendor/composer/ClassLoader.php
202202
203203
204204
205
206
205
206
207207
208
208
209
209210
210211
211212
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param array|string $paths The PSR-4 base directories
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param array|string $paths The PSR-4 base directories
*/
public function setPsr4($prefix, $paths) {
public function setPsr4($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr4 = (array) $paths;
} else {
vendor/composer/autoload_classmap.php
3636
3737
3838
39
3940
4041
4142
'CreateMcUserTable' => $baseDir . '/app/database/migrations/2014_06_26_234302_create_mc_user_table.php',
'CreateMentorMenteeMatchTable' => $baseDir . '/app/database/migrations/2014_06_29_143038_create_mentor_mentee_match_table.php',
'CreatePasswordRemindersTable' => $baseDir . '/app/database/migrations/2014_06_27_002502_create_password_reminders_table.php',
'CreateProjectsListingTable' => $baseDir . '/app/database/migrations/2014_07_06_025411_create_projects_listing_table.php',
'CreateUserXrefRoleTable' => $baseDir . '/app/database/migrations/2014_06_27_003343_create_user_xref_role_table.php',
'Crypt_AES' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/AES.php',
'Crypt_Base' => $vendorDir . '/phpseclib/phpseclib/phpseclib/Crypt/Base.php',
vendor/composer/autoload_real.php
22
33
44
5
5
66
77
88
......
1919
2020
2121
22
22
2323
24
25
26
27
24
2825
2926
3027
......
4946
5047
5148
52
49
5350
5451
5552
5653
5754
5855
59
56
6057
6158
6259
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit594f653b238ee2144ed34eecbabdcc06
class ComposerAutoloaderInitbe43bf07309bb7897b8d2ad788d8b295
{
private static $loader;
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit594f653b238ee2144ed34eecbabdcc06', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInitbe43bf07309bb7897b8d2ad788d8b295', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit594f653b238ee2144ed34eecbabdcc06', 'loadClassLoader'));
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
spl_autoload_unregister(array('ComposerAutoloaderInitbe43bf07309bb7897b8d2ad788d8b295', 'loadClassLoader'));
$includePaths = require __DIR__ . '/include_paths.php';
array_push($includePaths, get_include_path());
$includeFiles = require __DIR__ . '/autoload_files.php';
foreach ($includeFiles as $file) {
composerRequire594f653b238ee2144ed34eecbabdcc06($file);
composerRequirebe43bf07309bb7897b8d2ad788d8b295($file);
}
return $loader;
}
}
function composerRequire594f653b238ee2144ed34eecbabdcc06($file)
function composerRequirebe43bf07309bb7897b8d2ad788d8b295($file)
{
require $file;
}

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.06966s using 13 queries.