aboutsummaryrefslogtreecommitdiffhomepage
path: root/database
diff options
context:
space:
mode:
Diffstat (limited to 'database')
-rw-r--r--database/factories/ModelFactory.php21
-rw-r--r--database/factories/UserFactory.php23
-rw-r--r--database/migrations/.gitkeep1
-rw-r--r--database/migrations/2014_10_12_000000_create_users_table.php3
-rw-r--r--database/migrations/2014_10_12_100000_create_password_resets_table.php7
-rw-r--r--database/seeds/.gitkeep1
-rw-r--r--database/seeds/DatabaseSeeder.php4
-rw-r--r--database/seeds/UsersTableSeeder.php21
8 files changed, 50 insertions, 31 deletions
diff --git a/database/factories/ModelFactory.php b/database/factories/ModelFactory.php
new file mode 100644
index 0000000..c0e4686
--- /dev/null
+++ b/database/factories/ModelFactory.php
@@ -0,0 +1,21 @@
+<?php
+
+/*
+|--------------------------------------------------------------------------
+| Model Factories
+|--------------------------------------------------------------------------
+|
+| Here you may define all of your model factories. Model factories give
+| you a convenient way to create models for testing and seeding your
+| database. Just tell the factory how a default model should look.
+|
+*/
+
+$factory->define(Api\Users\Model\User::class, function (Faker\Generator $faker) {
+ return [
+ 'name' => $faker->name,
+ 'email' => $faker->safeEmail,
+ 'password' => bcrypt(str_random(10)),
+ 'remember_token' => str_random(10),
+ ];
+});
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
deleted file mode 100644
index facf233..0000000
--- a/database/factories/UserFactory.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-use Faker\Generator as Faker;
-
-/*
-|--------------------------------------------------------------------------
-| Model Factories
-|--------------------------------------------------------------------------
-|
-| This directory should contain each of the model factory definitions for
-| your application. Factories provide a convenient way to generate new
-| model instances for testing / seeding your application's database.
-|
-*/
-
-$factory->define(App\User::class, function (Faker $faker) {
- return [
- 'name' => $faker->name,
- 'email' => $faker->unique()->safeEmail,
- 'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
- 'remember_token' => str_random(10),
- ];
-});
diff --git a/database/migrations/.gitkeep b/database/migrations/.gitkeep
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/database/migrations/.gitkeep
@@ -0,0 +1 @@
+
diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php
index 689cbee..59aa01a 100644
--- a/database/migrations/2014_10_12_000000_create_users_table.php
+++ b/database/migrations/2014_10_12_000000_create_users_table.php
@@ -1,6 +1,5 @@
<?php
-use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
@@ -30,6 +29,6 @@ class CreateUsersTable extends Migration
*/
public function down()
{
- Schema::dropIfExists('users');
+ Schema::drop('users');
}
}
diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php
index 0d5cb84..00057f9 100644
--- a/database/migrations/2014_10_12_100000_create_password_resets_table.php
+++ b/database/migrations/2014_10_12_100000_create_password_resets_table.php
@@ -1,6 +1,5 @@
<?php
-use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
@@ -15,8 +14,8 @@ class CreatePasswordResetsTable extends Migration
{
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
- $table->string('token');
- $table->timestamp('created_at')->nullable();
+ $table->string('token')->index();
+ $table->timestamp('created_at');
});
}
@@ -27,6 +26,6 @@ class CreatePasswordResetsTable extends Migration
*/
public function down()
{
- Schema::dropIfExists('password_resets');
+ Schema::drop('password_resets');
}
}
diff --git a/database/seeds/.gitkeep b/database/seeds/.gitkeep
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/database/seeds/.gitkeep
@@ -0,0 +1 @@
+
diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php
index 91cb6d1..2399bf1 100644
--- a/database/seeds/DatabaseSeeder.php
+++ b/database/seeds/DatabaseSeeder.php
@@ -5,12 +5,12 @@ use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
- * Seed the application's database.
+ * Run the database seeds.
*
* @return void
*/
public function run()
{
- // $this->call(UsersTableSeeder::class);
+ $this->call(UsersTableSeeder::class);
}
}
diff --git a/database/seeds/UsersTableSeeder.php b/database/seeds/UsersTableSeeder.php
new file mode 100644
index 0000000..395fc13
--- /dev/null
+++ b/database/seeds/UsersTableSeeder.php
@@ -0,0 +1,21 @@
+<?php
+
+use Illuminate\Database\Seeder;
+use Illuminate\Database\Eloquent\Model;
+
+class UsersTableSeeder extends Seeder
+{
+ /**
+ * Run the database seeds.
+ *
+ * @return void
+ */
+ public function run()
+ {
+ DB::table('users')->insert([
+ 'name' => str_random(10),
+ 'email' => str_random(10).'@gmail.com',
+ 'password' => bcrypt('secret'),
+ ]);
+ }
+}