createTable( 'subscribe', [ 'id' => $this->primaryKey(), 'name' => $this->string(), 'email' => $this->string(), 'domain' => $this->string(), 'time' => $this->string(), ] ); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('subscribe'); } }