table('phinx_test_table'); $table ->addColumn('name', 'string', [ 'limit' => 100, 'null' => false, ]) ->addColumn('created_at', 'timestamp', [ 'default' => 'CURRENT_TIMESTAMP', 'null' => false, ]) ->create(); } }