o-g-r
@o-g-r (yamada hanako)

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

laravel migration データ挿入

解決したいこと

migrationでデータ挿入したいです。
seederではデータ挿入できるのですが、migrationでする必要があるためどなたか教えて頂けないでしょうか?

seederで流した内容

    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        hoge::create([
            'name'          =>  'yamada',
            'txt'           =>  'thanks',
            'no'            =>  '1',
            'kbn'           =>  '9',

        ]);
    }


### 自分で試したこと
migrationで流してみましたがうまくいきませんでした。

0

1Answer

Comments

  1. @o-g-r

    Questioner

    ご回答ありがとうございます。migrationで流すことができました。

Your answer might help someone💌