Skip to content

Commit 155ff7d

Browse files
Merge pull request #9 from what-crud/issue/6_add_cms_template
update transactions table migraion
2 parents 150206b + 8964361 commit 155ff7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cms/database/migrations/2019_05_02_150104_create_transactions_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function up()
2323
$table->dateTime('started_at')->nullable();
2424
$table->dateTime('sent_at')->nullable();
2525
$table->dateTime('delivered_at')->nullable();
26-
$table->boolean('active')->default(false);
26+
$table->boolean('active')->default(true);
2727
$table->timestamps();
2828
});
2929
}

0 commit comments

Comments
 (0)