Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
open-source
MetaGer
Commits
4c9d0d46
Commit
4c9d0d46
authored
Nov 26, 2019
by
Dominik Hebeler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unnecessary migrations
parent
9c6da5a6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
73 deletions
+0
-73
database/migrations/2018_04_26_114745_create_humanverification_table.php
...ions/2018_04_26_114745_create_humanverification_table.php
+0
-37
database/migrations/2018_08_30_102121_sponsoren_links.php
database/migrations/2018_08_30_102121_sponsoren_links.php
+0
-36
database/migrations/local/2019_10_15_103139_create_user_agents_table.php
...ions/local/2019_10_15_103139_create_user_agents_table.php
+0
-0
database/useragents.sqlite
database/useragents.sqlite
+0
-0
No files found.
database/migrations/2018_04_26_114745_create_humanverification_table.php
deleted
100644 → 0
View file @
9c6da5a6
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
CreateHumanverificationTable
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
create
(
'humanverification'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'uid'
)
->
unique
();
$table
->
string
(
'id'
);
$table
->
integer
(
'unusedResultPages'
);
$table
->
boolean
(
'whitelist'
);
$table
->
integer
(
'whitelistCounter'
);
$table
->
boolean
(
'locked'
);
$table
->
string
(
'lockedKey'
);
$table
->
timestamp
(
'updated_at'
);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
drop
(
'humanverification'
);
}
}
database/migrations/2018_08_30_102121_sponsoren_links.php
deleted
100644 → 0
View file @
9c6da5a6
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
SponsorenLinks
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
create
(
'sponsorenlinks'
,
function
(
Blueprint
$table
)
{
$table
->
increments
(
'id'
)
->
unique
();
$table
->
string
(
'linktext'
);
$table
->
string
(
'link'
);
$table
->
string
(
'langcode'
);
$table
->
timestamp
(
'updated_at'
);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
drop
(
'sponsorenlinks'
);
}
}
database/migrations/2019_10_15_103139_create_user_agents_table.php
→
database/migrations/
local/
2019_10_15_103139_create_user_agents_table.php
View file @
4c9d0d46
File moved
database/useragents.sqlite
deleted
100644 → 0
View file @
9c6da5a6
File deleted
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