Coder Social home page Coder Social logo

videoapp's Introduction

migration file old name class CreateUserprofilesTable extends Migration class AddFirstnameLastnameToUsers extends Migration class RenameNameColumnToUsernameToUsersTable extends Migration class AddDateOfBirthToUsersTable extends Migration class AddFirstnameLastnameToUserprofilesTable extends Migration class CreateCommentsTable extends Migration

migration file table name

    class CreateUserprofilesTable extends Migration
    Schema::create('userprofiles', function (Blueprint $table) {
        $table->id();
        $table->binary('userbackground')->nullable();
        $table->binary('profilepic');
        $table->string('fullname',20);
        $table->string('username',9)->unique();
        $table->mediumText('description',255);
        $table->string('siteurl');
        $table->double('mobile')->unique();
        $table->timestamps();
    });

    class AddFirstnameLastnameToUsers extends Migration
    Schema::table('users', function (Blueprint $table) {
        $table->string('firstname')->after('name');
        $table->string('lastname')->after('name');
    });

    class RenameNameColumnToUsernameToUsersTable extends Migration
    Schema::table('users', function (Blueprint $table) {
        $table->renameColumn('name', 'username');
    });

    class AddDateOfBirthToUsersTable extends Migration
    Schema::table('users', function (Blueprint $table) {
        $table->date('Date_of_birth')->after('email')->nullable();
    });

    class AddFirstnameLastnameToUserprofilesTable extends Migration
    Schema::table('userprofiles', function (Blueprint $table) {
        $table->string('lastname')->after('profilepic')->nullable();
        $table->string('firstname')->after('profilepic')->nullable();
        $table->string('gender')->after('profilepic')->nullable();
    });

    class CreateCommentsTable extends Migration

    models old file name
    class Comment extends Model
    class Userprofile extends Model
    class Session extends Model

controller file old name class DeleteaccountController extends Controller class DownloaduserdataController extends Controller class EditProfileController extends Controller class HelpController extends Controller class LoginActivityController extends Controller class NotificationController extends Controller class PasswordupdateController extends Controller class PrivacypolicyController extends Controller class ProfileController extends Controller class Reportcontroller extends Controller class SettingController extends Controller class SitetermsconditionController extends Controller class TwofactorController extends Controller class UploadDataController extends Controller class UseractivityController extends Controller class UsercommentController extends Controller class ViewprofileController extends Controller

videoapp's People

Contributors

laravel-shift avatar madfortech avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.