1234567891011121314151617181920212223242526272829303132 |
- <?php
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateNoticeSendsTable extends Migration
- {
-
- public function up()
- {
- Schema::create('notice_sends', function (Blueprint $table) {
- $table->increments('id');
- $table->tinyInteger('notice_id');
- $table->text('sendto_id');
- $table->timestamps();
- });
- }
-
- public function down()
- {
- Schema::drop('notice_sends');
- }
- }
|