Skip to content

Commit

Permalink
add max release count
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuiyong committed Nov 16, 2015
1 parent eadc4e1 commit 0c6b9d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/m151027_063246_keep_version_num.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class m151027_063246_keep_version_num extends Migration
public function up()
{
$this->addColumn(Project::tableName(), 'keep_version_num', Schema::TYPE_INTEGER . '(3) NOT NULL DEFAULT 20 COMMENT "线上版本保留数" AFTER audit');
$this->addColumn(Task::tableName(), 'enable_rollback', Schema::TYPE_INTEGER . '(1) NOT NULL DEFAULT 1 COMMENT "能否回滚此版本0no 1yes"');
$this->addColumn(Task::tableName(), 'enable_rollback', Schema::TYPE_INTEGER . '(1) NOT NULL DEFAULT 1 COMMENT "能否回滚此版本:0no 1yes"');

}

Expand Down

0 comments on commit 0c6b9d8

Please sign in to comment.