Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
CO-OP Search
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kittisak Maneewong
CO-OP Search
Commits
74c09d6a
Commit
74c09d6a
authored
6 years ago
by
Kittisak Maneewong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Edit addJob
parent
80a07856
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
0 deletions
+40
-0
2019_04_16_100008_create_companys_table.php
...se/migrations/2019_04_16_100008_create_companys_table.php
+40
-0
app.js
public/js/app.js
+0
-0
Addjob.vue
resources/js/views/Addjob.vue
+0
-0
No files found.
database/migrations/2019_04_16_100008_create_companys_table.php
0 → 100644
View file @
74c09d6a
<?php
use
Illuminate\Support\Facades\Schema
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Database\Migrations\Migration
;
class
CreateCompanysTable
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
create
(
'companys'
,
function
(
Blueprint
$table
)
{
$table
->
bigIncrements
(
'id'
);
$table
->
string
(
'company_name'
);
$table
->
string
(
'company_owner'
);
$table
->
string
(
'phone_no'
);
$table
->
string
(
'email'
);
$table
->
string
(
'addr'
);
$table
->
string
(
'tambon'
);
$table
->
string
(
'amphoe'
);
$table
->
string
(
'province'
);
$table
->
string
(
'zipcode'
);
$table
->
timestamps
();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
dropIfExists
(
'companys'
);
}
}
This diff is collapsed.
Click to expand it.
public/js/app.js
View file @
74c09d6a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
resources/js/views/Addjob.vue
View file @
74c09d6a
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment