hasTable('image'); if (!$exists) { $table = $this->table('image'); $table->addColumn('url','text') ->addColumn('caption','text') ->addColumn('user_id','integer') ->addColumn('width','integer') ->addColumn('height','integer') ->addColumn('type','integer') ->addColumn('created_at','date') ->addColumn('updated_at','datetime') ->create(); } } public function down() { $this->table('image')->drop()->save(); } }