Yep - one of the first things I did. I've tried going back to an old
repo and starting again - but seems to happen again on the first
commit.

I took a look at the database with sqlite3 and my mlink table is

sqlite> .schema mlink
CREATE TABLE mlink(
  mid INTEGER REFERENCES blob,
  pid INTEGER REFERENCES blob,
  fid INTEGER REFERENCES blob,
  fnid INTEGER REFERENCES filename,
  pfnid INTEGER REFERENCES filename,
  mperm INTEGER
);
CREATE INDEX mlink_i1 ON mlink(mid);
CREATE INDEX mlink_i2 ON mlink(fnid);
CREATE INDEX mlink_i3 ON mlink(fid);
CREATE INDEX mlink_i4 ON mlink(pid);

Looks like the mperm column is there ok and from looking at some older
repos it looks like it's a recent addition.

Steve

On Mon, Mar 7, 2011 at 9:45 PM, Stephen De Gabrielle
<[email protected]> wrote:
> did you try recreate the datebase with
> fossil rebuild
>
> Cheers,
>
> Stephen
>
>
> On Mon, Mar 7, 2011 at 10:24 AM, Steve Dalton <[email protected]> wrote:
>> I just tried to push to my repository and I got
>>
>>                Bytes      Cards  Artifacts     Deltas
>> Sent:            3546         75          0          0
>> Received:        4067         88          0          0
>> Sent:            6259         75          0          1
>> Error: Database error: table mlink has no column named mperm
>> INSERT INTO
>> mlink(mid,pid,fid,fnid,pfnid,mperm)VALUES(:m,:p,:f,:n,:pfn,:mp)
>> Received:         147          1          0          0
>> Total network traffic: 5010 bytes sent, 1444 bytes received
>>
>> Any ideas?
>>
>> Upgraded to the latest and it still happens.
>>
>> Steve
>>
>>
>> --
>> Refactor
>> Engage. Succeed. Repeat.
>> PO Box 802, Labrador, Q 4215, Australia
>> tel: +61 (0)7 5668 3424 web: refactor.com.au
>> _______________________________________________
>> fossil-users mailing list
>> [email protected]
>> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>>
>
> _______________________________________________
> fossil-users mailing list
> [email protected]
> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>
>



-- 
Refactor
Engage. Succeed. Repeat.
PO Box 802, Labrador, Q 4215, Australia
tel: +61 (0)7 5668 3424 web: refactor.com.au
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to