createTable( User::tableName(), [ 'id' => $this->primaryKey(), 'username' => $this->string(16)->notNull()->unique(), ] ); } public function safeDown() { $this->dropTable(User::tableName()); } }