from server

This commit is contained in:
root 2023-08-03 19:56:59 +05:00
parent 6d19fdd55e
commit bd0bdad6f4
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?php namespace TPS\Birzha\Updates;
use Schema;
use October\Rain\Database\Updates\Migration;
class BuilderTableUpdateTpsBirzhaMessages2 extends Migration
{
public function up()
{
Schema::table('tps_birzha_messages', function($table)
{
$table->integer('chatroom_id');
});
}
public function down()
{
Schema::table('tps_birzha_messages', function($table)
{
$table->dropColumn('chatroom_id');
});
}
}

View File

@ -389,3 +389,6 @@
1.0.136:
- 'Created table tps_birzha_messages'
- builder_table_create_tps_birzha_messages_2.php
1.0.137:
- 'Updated table tps_birzha_messages'
- builder_table_update_tps_birzha_messages_2.php