This commit is contained in:
Tim Hovius 2016-08-23 08:41:35 +00:00 committed by GitHub
commit 61af12d83b
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ class ArchiveProject extends AbstractMigration
public function up()
{
$project = $this->table('project');
$project->addColumn('archived', 'boolean');
$project->addColumn('archived', 'boolean', array('null' => false, 'default' => 0));
$project->save();
}

View file

@ -14,7 +14,7 @@ class ErrorsTable extends AbstractMigration
$table->addColumn('line_start', 'integer', array('signed' => false, 'null' => true));
$table->addColumn('line_end', 'integer', array('signed' => false, 'null' => true));
$table->addColumn('severity', 'integer', array('signed' => false, 'limit' => MysqlAdapter::INT_TINY));
$table->addColumn('message', 'string', array('limit' => 250));
$table->addColumn('message', 'text');
$table->addColumn('created_date', 'datetime');
$table->addIndex(array('build_id', 'created_date'), array('unique' => false));
$table->addForeignKey('build_id', 'build', 'id', array('delete'=> 'CASCADE', 'update' => 'CASCADE'));