执行
xxxxxxxxxx
1
DELETE FROM ir_attachment WHERE url LIKE '/web/content/%';
已复制
后重启或者升级
xxxxxxxxxx
1
Digits = [S,E,N,D,M,O,R,E], % Create variables
2
Digits ins 0..9, % Associate domains to variables
3
S #\= 0, % Constraint: S must be different from 0
4
M #\= 0,
5
all_different(Digits), % all the elements must take different values
6
1000*S + 100*E + 10*N + D % Other constraints
7
+ 1000*M + 100*O + 10*R + E
8
#= 10000*M + 1000*O + 100*N + 10*E + Y,
9
label(Digits).
已复制