03.12.2015 Views

laravel4cookbook

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

API 116<br />

16 $table->increments('id');<br />

17 $table->string('name');<br />

18 $table->text('description');<br />

19 $table->timestamps();<br />

20 });<br />

21 }<br />

22<br />

23 /**<br />

24 * Reverse the migrations.<br />

25 *<br />

26 * @return void<br />

27 */<br />

28 public function down()<br />

29 {<br />

30 Schema::drop('category');<br />

31 }<br />

32 }<br />

.<br />

This file should be saved as app/database/migrations/00000000_000000_create_category_table.php.<br />

1

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!