Advertisement
kanishigami

Untitled

Nov 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. $table->string('trading_name');
  2. $table->string('company_name')->nullable();
  3. $table->string('email')->nullable();
  4. $table->string('site')->nullable();
  5. $table->string('phones')->nullable();
  6. $table->string('opening_hours')->nullable();
  7. $table->longText('info');
  8. $table->tinyInteger('non_stop');
  9. $table->string('address')->nullable();
  10. $table->string('address_number')->nullable();
  11. $table->string('address_complement')->nullable();
  12. $table->string('district')->nullable();
  13. $table->string('city');
  14. $table->string('state', 2);
  15. $table->string('zipcode', 9);
  16. $table->double('map_latitude', 10, 6)->nullable();
  17. $table->double('map_longitude', 10, 6)->nullable();
  18. $table->string('status')->default('active'); // active, inactive
  19. $table->timestamps();
  20. $table->index(['map_latitude', 'map_longitude']);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement