Orl 短網址,供三星、福斯使用

2016_02_23_080520_create_funusergroups_table.php 751B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. use Illuminate\Database\Schema\Blueprint;
  3. use Illuminate\Database\Migrations\Migration;
  4. class CreateFunusergroupsTable extends Migration
  5. {
  6. /**
  7. * Run the migrations.
  8. *
  9. * @return void
  10. */
  11. public function up()
  12. {
  13. Schema::create('funusergroups', function (Blueprint $table) {
  14. $table->increments('id');
  15. $table->string('Name');
  16. $table->string('FunList');
  17. $table->string('UsrList');
  18. $table->integer('Valid');
  19. $table->timestamps();
  20. $table->integer('Oid');
  21. });
  22. }
  23. /**
  24. * Reverse the migrations.
  25. *
  26. * @return void
  27. */
  28. public function down()
  29. {
  30. Schema::drop('funusergroups');
  31. }
  32. }