Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public function up()
  2. {
  3. Schema::create('tags', function (Blueprint $table) {
  4. $table->increments('id');
  5. $table->string('tag');
  6. $table->timestamps();
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement