Skip to content

Commit

Permalink
varchar to text migration
Browse files Browse the repository at this point in the history
  • Loading branch information
scammo committed Jan 8, 2024
1 parent 7e7de7b commit fd9335d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public function up(): void
$table->id();
$table->integer('track_id')->nullable()->default(null);
$table->string('name');
$table->string('encrypted_data');
$table->string('encrypted_symatric_key');
$table->text('encrypted_data');
$table->text('encrypted_symatric_key');
$table->string('status');
$table->timestamps();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function up(): void
$table->id();
$table->integer('proposal_id')->nullable()->default(null);
$table->string('vote');
$table->string('comment');
$table->text('comment');
$table->string('user_id');
$table->timestamps();
});
Expand Down

0 comments on commit fd9335d

Please sign in to comment.