Search
 
SCRIPT & CODE EXAMPLE
 

PHP

long text in laravel migration

Schema::create('posts', function ($table) {
    $table->increments('id');
    $table->integer('user_id');
    // ...
    $table->longText('description');
    // ...
}
Comment

laravel migration smallint length

For Laravel & Mysql

String types
CHAR - 1 to 191 (trailing spaces removed)
STRING - 1 to 16,300 (user defined)
TEXT - 1 to 65,535
MEDIUMTEXT - 1 to 16,777,215
LONGTEXT - 1 to 4,294,967,295

Integer types
TINYINT - 0 to 255 (unsigned) | -128 to 127 (signed)
SMALLINT - 0 to 65,535 (unsigned) | -32,768 to 32,767 (signed)
MEDIUMINT - 0 to 16,777,215 (unsigned) | -8,388,608 to 8,388,607 (signed)
INT - 0 to 4,294,967,295 (unsigned) | -2,147,483,648 to 2,147,483,647 (signed)
BIGINT - 0 to 18,446,744,073,709,551,615 (unsigned) | -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 (signed)

Floating types
Structure: `([max decimal places], [max precision])`
FLOAT - ([0-7], [0-23])
DOUBLE - ([0-14], [24-53])
DECIMAL - ([0-65], [0-30])
Comment

PREVIOUS NEXT
Code Example
Php :: laravel isset 
Php :: cmd run php file 
Php :: laravel create custom route file 
Php :: wp php blog info image 
Php :: macrotime phph 
Php :: php gravity forms display 
Php :: php increment variable 
Php :: get dates between two dates using specific interval using carbon 
Php :: Uncaught jquery-numerator requires jQuery to be loaded first wordpress 
Php :: laravel collection makeHidden 
Php :: codeigniter 4 radio button isset 
Php :: create resource controller in admin folder laravel 
Php :: php howto ignore file with BOM 
Php :: Add button next to "ADD TO CART" on product archive 
Php :: windows list registered applications 
Php :: How do I display logged-in username IF logged-in? site:wordpress.stackexchange.com 
Php :: add data in textarea with php variable 
Php :: show sender name laravel 
Php :: php ref parameter 
Php :: php $_session err_miss_cache 
Php :: Wordpress pagination custom arrow 
Php :: laravel database engine innodb 
Php :: change laravel port 
Php :: latavel attach method 
Php :: use htaccess to redirect in cpanel laravel 
Php :: php function to get the last value of array 
Php :: laravel zoom integration 
Php :: how to add custom navigation menus in wordpress themes 
Php :: using custom fonts in php 
Php :: query log laravel 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =