first commit
This commit is contained in:
Executable
+40
@@ -0,0 +1,40 @@
|
||||
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2021*/
|
||||
/**
|
||||
* order Migration
|
||||
*
|
||||
* @copyright 2019 Manaknightdigital Inc.
|
||||
* @link https://manaknightdigital.com
|
||||
* @license Proprietary Software licensing
|
||||
* @author Ryan Wong
|
||||
*/
|
||||
class Migration_order extends CI_Migration {
|
||||
|
||||
public function up()
|
||||
{
|
||||
$this->dbforge->add_field([ 'id' => array('type' => 'INT','constraint' => 11,'unsigned' => TRUE,'auto_increment' => TRUE),
|
||||
'purchase_user_id' => array('type' => 'INT', 'constraint' => 11, 'null' => TRUE),
|
||||
'sale_user_id' => array('type' => 'INT', 'constraint' => 11, 'null' => TRUE),
|
||||
'inventory_id' => array('type' => 'INT', 'constraint' => 11, 'null' => TRUE),
|
||||
'order_date' => array('type' => 'DATE', 'null' => TRUE),
|
||||
'order_time' => array('type' => 'VARCHAR', 'constraint' => '255'),
|
||||
'subtotal' => array('type' => 'VARCHAR', 'constraint' => '255'),
|
||||
'tax' => array('type' => 'VARCHAR', 'constraint' => '255'),
|
||||
'discount' => array('type' => 'VARCHAR', 'constraint' => '255'),
|
||||
'total' => array('type' => 'VARCHAR', 'constraint' => '255'),
|
||||
'stripe_charge_id' => array('type' => 'VARCHAR', 'constraint' => '255'),
|
||||
'stripe_intent' => array('type' => 'TEXT', 'null' => TRUE),
|
||||
'status' => array('type' => 'INT', 'constraint' => 11, 'null' => TRUE),
|
||||
'created_at' => array('type' => 'DATE', 'null' => TRUE),
|
||||
'updated_at' => array('type' => 'DATETIME', 'null' => TRUE)]);
|
||||
$this->dbforge->add_key('id', TRUE);
|
||||
$this->dbforge->create_table('order');
|
||||
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
$this->dbforge->drop_table('order');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user