mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2025-07-06 18:35:53 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
d9cbb6cf00 | |||
df8e09f02c |
@ -0,0 +1 @@
|
||||
alter table parties rename column player_id to party_id;
|
@ -0,0 +1,11 @@
|
||||
create table parties_new (
|
||||
party_id integer primary key autoincrement,
|
||||
party_name text not null,
|
||||
party_alias text);
|
||||
insert into parties_new select player_id, party_name, party_alias from parties;
|
||||
|
||||
drop index parties_party_name_idx;
|
||||
drop table parties;
|
||||
|
||||
alter table parties_new rename to parties;
|
||||
create unique index parties_party_name_idx on parties(party_name);
|
@ -1 +1 @@
|
||||
version := "0.9.9"
|
||||
version := "0.9.10"
|
||||
|
Reference in New Issue
Block a user