Search
 
SCRIPT & CODE EXAMPLE
 

PHP

migration types in laravel

/*
|========================================================
| Common Migration Types in (for mySql) Laravel
|========================================================
*/
$table->bigIncrements('id'); 	Incrementing ID using a "big integer" equivalent.
$table->bigInteger('votes'); 	BIGINT equivalent to the table
$table->binary('data'); 	BLOB equivalent to the table
$table->boolean('confirmed'); 	BOOLEAN equivalent to the table
$table->char('name', 4); 	CHAR equivalent with a length
$table->date('created_at'); 	DATE equivalent to the table
$table->dateTime('created_at'); 	DATETIME equivalent to the table
$table->decimal('amount', 5, 2); 	DECIMAL equivalent with a precision and scale
$table->double('column', 15, 8); 	DOUBLE equivalent with precision, 15 digits in total and 8 after the decimal point
$table->enum('choices', array('foo', 'bar')); 	ENUM equivalent to the table
$table->float('amount'); 	FLOAT equivalent to the table
$table->increments('id'); 	Incrementing ID to the table (primary key).
$table->integer('votes'); 	INTEGER equivalent to the table
$table->longText('description'); 	LONGTEXT equivalent to the table
$table->mediumInteger('numbers'); 	MEDIUMINT equivalent to the table
$table->mediumText('description'); 	MEDIUMTEXT equivalent to the table
$table->morphs('taggable'); 	Adds INTEGER taggable_id and STRING taggable_type
$table->nullableTimestamps(); 	Same as timestamps(), except allows NULLs
$table->smallInteger('votes'); 	SMALLINT equivalent to the table
$table->tinyInteger('numbers'); 	TINYINT equivalent to the table
$table->softDeletes(); 	Adds deleted_at column for soft deletes
$table->string('email'); 	VARCHAR equivalent column
$table->string('name', 100); 	VARCHAR equivalent with a length
$table->text('description'); 	TEXT equivalent to the table
$table->time('sunrise'); 	TIME equivalent to the table
$table->timestamp('added_on'); 	TIMESTAMP equivalent to the table
$table->timestamps(); 	Adds created_at and updated_at columns
$table->rememberToken(); 	Adds remember_token as VARCHAR(100) NULL
->nullable() 	Designate that the column allows NULL values
->default($value) 	Declare a default value for a column
->unsigned() 	Set INTEGER to UNSIGNED
Comment

laravel migration type to store html

$table->text('content');
Comment

PREVIOUS NEXT
Code Example
Php :: php and ajax on select option 
Php :: download npm package 
Php :: clear cache using laravel controller 
Php :: php api 
Php :: simple pagination in php 
Php :: auto refresh extintion php 
Php :: carbon date time laravel 
Php :: what is lang in laravel 
Php :: How do I log properly a Laravel Job 
Php :: if statement php 
Php :: show uploaded image in php 
Php :: referencing constant in config laravel 
Php :: laravel datatables 
Php :: date and time syntax 
Php :: Add Text After or Before on the Shop Page/Archive Page 
Php :: laravel migration int length 
Php :: Eager realationship in laravel 
Php :: laravel transactions eloquent 
Php :: guarded and fillable in laravel 
Php :: php after leave page 
Php :: get 1 data from get laravel 
Php :: wordpress how to display breadcrumb in child theme programmatically 
Php :: woocommerce recipient email default change Function 
Php :: activerecord yii2 select with limit(start,end) not working 
Php :: is search page wordpress dev 
Php :: php user ip from post request 
Php :: barcode for laravel 
Php :: Laravel htaccess for aws ec2 
Php :: insert views laravel database 
Php :: blade check user role laravel 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =