5

我希望 RedBean 在生成模式时创建唯一键/索引。以下代码确实-与我对文档的理解相反-不要这样做:

R::setup('sqlite:rss_loader.db3');

$bean = R::findOne(IMG);
if (!$bean->id) {
    $bean = R::dispense(IMG);
    $bean->setMeta("buildcommand.unique.0", array('url'));
    $bean->url      = 'text';
    R::store($bean);
    $bean->wipe();

    R::freeze(); //no more schema changes!
}

sqlite 中发生的事情是这样的:

create table img (id integer primary key autoincrement, url) 

我所期待的是:

create table img (id integer primary key autoincrement, url text unique) 

这可以在不针对 RedBean 编写 SQL 的情况下实现吗?

4

1 回答 1

3

你用的是什么版本的红豆?看起来他们更新buildcommand了最新版本。手册是这样说的:

$bean->setMeta("buildcommand.unique" , array(array($property1, $property2)));

插入你所拥有的:

$bean->setMeta("buildcommand.unique" , array(array('url')));

如果这不起作用,您可能必须阅读setMeta函数下的实际代码,看看实际发生了什么。

要在现有表上执行此操作,只需像这样“存储”一个空 bean 就足够了——不需要将数据添加到数据库中:

$bean = R::dispense(IMG);
$bean->setMeta("buildcommand.unique", array(array(...)));
R::store($bean);

(警告,如果你这样做后冻结,你不能保证拥有所有的列)

于 2012-05-21T17:24:02.693 回答