PHP Classes

File: app/migration/tables/branches.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   PHP API Service   app/migration/tables/branches.php   Download  
File: app/migration/tables/branches.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP API Service
Implements a project API using the Mind framework
Author: By
Last change:
Date: 2 years ago
Size: 308 bytes
 

Contents

Class file image Download
<?php

$scheme
= array(
   
'id:increments',
   
'branch_name:string@16',
   
'branch_password:string',
   
'branch_token:string@14',
   
'branch_status:string@5',
   
'created_at:string@19',
   
'updated_at:string@19'
);

if(!
$this->is_table('branches')){
   
$this->tableCreate('branches', $scheme);
}