table('bulk_purchase_inquiry', ['engine' => 'MyISAM', 'comment' => '批量采购询盘表']); $table->addColumn('language_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '语言ID']) ->addColumn('corp_name', 'string', ['limit' => 64, 'null' => false, 'comment' => '公司名称']) ->addColumn('first_name', 'string', ['limit' => 64, 'null' => false, 'comment' => '姓']) ->addColumn('last_name', 'string', ['limit' => 64, 'null' => false, 'comment' => '名']) ->addColumn('email', 'string', ['limit' => 128, 'null' => false, 'comment' => '邮箱']) ->addColumn('phone', 'string', ['limit' => 32, 'null' => false, 'comment' => '电话']) ->addColumn('province', 'string', ['limit' => 64, 'null' => false, 'comment' => '省']) ->addColumn('city', 'string', ['limit' => 64, 'null' => false, 'comment' => '市']) ->addColumn('district', 'string', ['limit' => 64, 'null' => false, 'comment' => '区']) ->addColumn('address', 'string', ['limit' => 255, 'null' => false, 'comment' => '地址']) ->addColumn('interest', 'string', ['limit' => 255, 'null' => false, 'comment' => '兴趣(感兴趣的产品品类)']) ->addColumn('message', 'text', ['null' => false, 'comment' => '留言内容']) ->addColumn('ip', 'string', ['limit' => 64, 'null' => false, 'comment' => 'IP']) ->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->create(); } }