Version 1.0.3

This commit is contained in:
affan98 2019-05-14 03:03:59 -04:00
commit 1fce2a39fb
30 changed files with 174 additions and 1006 deletions

View file

@ -37,7 +37,7 @@ use OCP\Migration\IOutput;
* Installation class for the forms app.
* Initial db creation
*/
class Version0009Date20190000000005 extends SimpleMigrationStep {
class Version0009Date20190000000006 extends SimpleMigrationStep {
/** @var IDBConnection */
protected $connection;
@ -182,6 +182,10 @@ class Version0009Date20190000000005 extends SimpleMigrationStep {
'notnull' => false,
'length' => 4096,
]);
$table->addColumn('vote_option_type', Type::STRING, [
'notnull' => false,
'length' => 256,
]);
$table->setPrimaryKey(['id']);
}