Forum adresimize hoş geldin FiveMTürk olarak amacımız siz değerli kullanıcılarımıza en aktif fikir ve paylaşım platformu sunmak bir yana en güvenilir şekilde alışveriş yapabileceğiniz bir platform sunmaktır.
Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
INSERT INTO `datastore` (name, label, shared) VALUES
('property','Property',0)
;
create table if not exists disc_property
(
id bigint unsigned auto_increment PRIMARY KEY,
name text not null,
sold tinyint(1) default 0 null,
price int default 0 not null,
locked tinyint(1) default 1 null,
constraint id
unique (id)
);
create table if not exists disc_property_garage_vehicles
(
id bigint unsigned auto_increment PRIMARY KEY,
name text not null,
plate text not null,
props longtext not null,
constraint id
unique (id)
);
create table if not exists disc_property_inventory
(
id bigint unsigned auto_increment PRIMARY KEY,
inventory_name text null,
data longtext null,
constraint id
unique (id)
);
create table if not exists disc_property_owners
(
id bigint unsigned auto_increment PRIMARY KEY,
name text null,
identifier text null,
active tinyint(1) default 1 null,
owner tinyint(1) default 0 null,
constraint id
unique (id)
);
disc-propertynin create kodları bunlar yüklediğine emin misin ?
INSERT INTO `datastore` (name, label, shared) VALUES
('property','Property',0)
;
create table if not exists disc_property
(
id bigint unsigned auto_increment PRIMARY KEY,
name text not null,
sold tinyint(1) default 0 null,
price int default 0 not null,
locked tinyint(1) default 1 null,
constraint id
unique (id)
);
create table if not exists disc_property_garage_vehicles
(
id bigint unsigned auto_increment PRIMARY KEY,
name text not null,
plate text not null,
props longtext not null,
constraint id
unique (id)
);
create table if not exists disc_property_inventory
(
id bigint unsigned auto_increment PRIMARY KEY,
inventory_name text null,
data longtext null,
constraint id
unique (id)
);
create table if not exists disc_property_owners
(
id bigint unsigned auto_increment PRIMARY KEY,
name text null,
identifier text null,
active tinyint(1) default 1 null,
owner tinyint(1) default 0 null,
constraint id
unique (id)
);
disc-propertynin create kodları bunlar yüklediğine emin misin ?
--
-- Tablo için indeksler `disc_property`
--
ALTER TABLE `disc_property`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `id` (`id`);
--
-- Dökümü yapılmış tablolar için AUTO_INCREMENT değeri
--
--
-- Tablo için AUTO_INCREMENT değeri `disc_property`
--
ALTER TABLE `disc_property`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;