%PDF- %PDF-
Direktori : /var/www/html/news/database/migrations/ |
Current File : /var/www/html/news/database/migrations/2017_04_16_002217_create_configurations_table.php |
<?php use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateConfigurationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('configurations', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('site_name'); $table->string('site_domain'); $table->boolean('comment_approvement'); $table->string('admin_email'); $table->string('contact_email'); $table->string('address'); $table->string('phone_number_1'); $table->string('phone_number_2'); $table->decimal('latitude'); $table->decimal('longitude'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('configurations'); } }