Guest User

Untitled

a guest
Oct 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Schema::create('pages', function (Blueprint $table) {
  2. $table->increments('id');
  3. ...
  4. $table->string('icon')->nullable();
  5. }
  6.  
  7. Schema::create('icons', function (Blueprint $table) {
  8. $table->increments('id');
  9. $table->string('name');
  10. });
Add Comment
Please, Sign In to add comment