Guest User

Untitled

a guest
Jul 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public function up()
  2. {
  3. Schema::create('images', function (Blueprint $table) {
  4. $table->increments('id');
  5. $table->string('image');
  6. $table->timestamps();
  7. });
  8. }
  9.  
  10. public function up()
  11. {
  12. Schema::create('images', function (Blueprint $table) {
  13. $table->increments('id');
  14. $table->string('image');
  15. $table->string('desciption');
  16. $table->timestamps();
  17. $table->nullableTimestamps();
  18.  
  19. });
  20. }
Add Comment
Please, Sign In to add comment