Guest User

Untitled

a guest
Jan 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public function up()
  2. {
  3. Schema::create('siswas', function (Blueprint $table) {
  4. $table->increments('id');
  5. $table->string('nama');
  6. $table->string('alamat');
  7. $table->timestamps();
  8. });
  9. }
Add Comment
Please, Sign In to add comment