Commit 89759a7d by Angello Torres

Add file create_skill_table

parent e5badf09
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="BranchesTreeState">
<expand>
<path>
<item name="ROOT" type="e8cecc67:BranchNodeDescriptor" />
<item name="LOCAL_ROOT" type="e8cecc67:BranchNodeDescriptor" />
</path>
<path>
<item name="ROOT" type="e8cecc67:BranchNodeDescriptor" />
<item name="REMOTE_ROOT" type="e8cecc67:BranchNodeDescriptor" />
</path>
<path>
<item name="ROOT" type="e8cecc67:BranchNodeDescriptor" />
<item name="REMOTE_ROOT" type="e8cecc67:BranchNodeDescriptor" />
<item name="GROUP_NODE:origin" type="e8cecc67:BranchNodeDescriptor" />
</path>
</expand>
<select />
</component>
<component name="ChangeListManager">
<list default="true" id="2e8e7093-fa11-43dc-8218-0987d8d69af9" name="Default Changelist" comment="" />
<option name="SHOW_DIALOG" value="false" />
......@@ -7,7 +25,7 @@
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="ComposerSettings" synchronizationState="SYNCHRONIZE">
<component name="ComposerSettings" doNotAsk="true" synchronizationState="SYNCHRONIZE">
<pharConfigPath>$PROJECT_DIR$/composer.json</pharConfigPath>
<execution />
</component>
......@@ -18,6 +36,9 @@
</list>
</option>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
</component>
<component name="PhpWorkspaceProjectConfiguration">
<include_path>
<path value="$PROJECT_DIR$/vendor/dragonmantank/cron-expression" />
......@@ -108,6 +129,7 @@
</include_path>
</component>
<component name="ProjectId" id="1i05x3qJtShOTxZAlezA7c6noWc" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
......@@ -134,13 +156,35 @@
<option name="presentableId" value="Default" />
<updated>1601031912075</updated>
<workItem from="1601031913325" duration="5752000" />
<workItem from="1601043097024" duration="816000" />
<workItem from="1601043914288" duration="1261000" />
</task>
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
<option name="oldMeFiltersMigrated" value="true" />
</component>
<component name="WindowStateProjectService">
<state x="1534" y="85" width="1092" height="728" key="#com.intellij.execution.impl.EditConfigurationsDialog" timestamp="1601043860805">
<screen x="1360" y="0" width="1440" height="860" />
</state>
<state x="1534" y="85" width="1092" height="728" key="#com.intellij.execution.impl.EditConfigurationsDialog/0.0.1360.728/1360.0.1440.860@1360.0.1440.860" timestamp="1601043860805" />
<state x="1860" y="185" key="FileChooserDialogImpl" timestamp="1601043909593">
<screen x="1360" y="0" width="1440" height="860" />
</state>
<state x="1860" y="185" key="FileChooserDialogImpl/0.0.1360.728/1360.0.1440.860@1360.0.1440.860" timestamp="1601043909593" />
<state width="1397" height="163" key="GridCell.Tab.0.bottom" timestamp="1601032075369">
<screen x="1360" y="0" width="1440" height="860" />
</state>
......@@ -157,5 +201,9 @@
<screen x="1360" y="0" width="1440" height="860" />
</state>
<state width="1397" height="163" key="GridCell.Tab.0.right/0.0.1360.728/1360.0.1440.860@1360.0.1440.860" timestamp="1601032075369" />
<state x="1743" y="180" width="672" height="678" key="search.everywhere.popup" timestamp="1601043883732">
<screen x="1360" y="0" width="1440" height="860" />
</state>
<state x="1743" y="180" width="672" height="678" key="search.everywhere.popup/0.0.1360.728/1360.0.1440.860@1360.0.1440.860" timestamp="1601043883732" />
</component>
</project>
\ No newline at end of file
......@@ -28,8 +28,9 @@ class CreateUsersTable extends Migration
$table->bigIncrements('id');
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
// $table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->boolean('is_admin')->default(false);
$table->rememberToken(); /* No representa una columna como tal de la DB, es un método helper (de ayuda),
genera columnas comunes en la app, en este caso, genera una columna la cual
almacena/recuerda los usuarios para visitas subsiguientes */
......
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSkillsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('skills', function (Blueprint $table) {
$table->bigIncrements('id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('skills');
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment