Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F11722655
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/database/migrations/2016_06_28_034600_create_users_external_sources_table.php b/database/migrations/2016_06_28_034600_create_users_external_sources_table.php
index acbfc31..5ddfba1 100644
--- a/database/migrations/2016_06_28_034600_create_users_external_sources_table.php
+++ b/database/migrations/2016_06_28_034600_create_users_external_sources_table.php
@@ -1,36 +1,36 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
-class CreateUsersExternalCredentialsTable extends Migration {
+class CreateUsersExternalSourcesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up() {
Schema::create('users_external_sources', function(Blueprint $table) {
$table->increments('id');
$table->string('source_name');
$table->string('source_user_id');
$table->integer('user_id')->unsigned();
$table->timestamps();
$table->softDeletes();
$table->foreign('user_id')->references('id')->on('users');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down() {
Schema::drop('users_external_sources');
}
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Sep 18, 04:14 (21 h, 15 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2989979
Default Alt Text
(1 KB)
Attached To
Mode
rGROVE Auth Grove
Attached
Detach File
Event Timeline
Log In to Comment