PHP Classes

File: migration/template_table.php

Recommend this page to a friend!
  Classes of Zimo Xiao   Angel Framework   migration/template_table.php   Download  
File: migration/template_table.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Angel Framework
Handle HTTP requests received by Web applications
Author: By
Last change:
Date: 5 years ago
Size: 144 bytes
 

Contents

Class file image Download
<?php

  migration
::table('table_name', function ($table) {
     
$table->int('id');
     
$table->text('username');
      return
$table;
  });