Skip to content

Commit

Permalink
Update dist DBs
Browse files Browse the repository at this point in the history
  • Loading branch information
steveblamey committed Jul 28, 2021
1 parent 16973bd commit 3a6dc0c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
Binary file modified schema/database/postgresql/uzerp-base-dist.sql
Binary file not shown.
Binary file modified schema/database/postgresql/uzerp-demo-dist.sql
Binary file not shown.
Binary file modified schema/database/postgresql/uzerp-starter-dist.sql
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php


use UzerpPhinx\UzerpMigration;

class AddProductgroupActiveColumn extends UzerpMigration
{
public function change()
{
$table = $this->table('st_productgroups');
$table->addColumn('active', 'boolean', ['default' => true])
->save();
}
}

0 comments on commit 3a6dc0c

Please sign in to comment.