design-change
This commit is contained in:
@ -510,6 +510,10 @@ DB::statement("CREATE TABLE IF NOT EXISTS tbl_partners (
|
||||
if (!Schema::hasColumn('franchises', 'for')) {
|
||||
$table->text('for')->nullable()->after('franchise_id');
|
||||
}
|
||||
|
||||
if (!Schema::hasColumn('franchises', 'link')) {
|
||||
$table->string('link')->nullable()->after('banners');
|
||||
}
|
||||
});
|
||||
Schema::table('settings', function (Blueprint $table) {
|
||||
if (!Schema::hasColumn('settings', 'address')) {
|
||||
|
@ -22,6 +22,7 @@ class Franchises extends Model
|
||||
'text',
|
||||
'thumb',
|
||||
'banners',
|
||||
'link',
|
||||
'display_order',
|
||||
'status',
|
||||
'created_at',
|
||||
|
Reference in New Issue
Block a user