Skip to content
Snippets Groups Projects
Commit 94bb4d31 authored by Aurore Chayrouse's avatar Aurore Chayrouse
Browse files

Columns nullable

parent 52d11bab
No related branches found
No related tags found
No related merge requests found
Pipeline #28221 failed
......@@ -17,7 +17,7 @@ public function up()
$table->id();
$table->timestamps();
$table->string('address');
$table->string('moreInfos');
$table->string('moreInfos')->nullable();
$table->string('cp');
$table->string('city');
$table->string('codeInsee');
......
......@@ -21,7 +21,7 @@ public function up()
$table->string('siren');
$table->boolean('active');
$table->string('website')->nullable();
$table->text('info');
$table->text('info')->nullable();
$table->longText('bilan1')->nullable();
$table->longText('bilan2')->nullable();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment