-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backup function discarded due to some server incompatibilities, backu…
…p files of db is added
- Loading branch information
1 parent
c3c4ad6
commit abc8506
Showing
4 changed files
with
1,885 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | ||
SET time_zone = "+00:00"; | ||
|
||
CREATE TABLE IF NOT EXISTS `ayet` ( | ||
`ayet_id` int(10) unsigned NOT NULL AUTO_INCREMENT, | ||
`tarih` int(10) unsigned NOT NULL, | ||
`sure_no` varchar(10) COLLATE utf8_turkish_ci NOT NULL, | ||
`sure_adi` varchar(20) COLLATE utf8_turkish_ci NOT NULL, | ||
`ayet_meal` varchar(5000) COLLATE utf8_turkish_ci NOT NULL, | ||
`ek_not` varchar(5000) COLLATE utf8_turkish_ci DEFAULT NULL, | ||
PRIMARY KEY (`ayet_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci AUTO_INCREMENT=440 ; | ||
|
||
CREATE TABLE IF NOT EXISTS `ayet_tag` ( | ||
`ayet_id` int(10) unsigned NOT NULL, | ||
`tag_id` int(10) unsigned NOT NULL | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
|
||
|
||
CREATE TABLE IF NOT EXISTS `gunun_ayeti` ( | ||
`ulasilan_sayi` int(11) NOT NULL, | ||
`duzenlenen_tarih` int(11) NOT NULL | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
|
||
CREATE TABLE IF NOT EXISTS `tag` ( | ||
`tag_id` int(10) unsigned NOT NULL AUTO_INCREMENT, | ||
`tarih` int(10) unsigned NOT NULL, | ||
`tag_adi` varchar(100) COLLATE utf8_turkish_ci DEFAULT NULL, | ||
PRIMARY KEY (`tag_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci AUTO_INCREMENT=54 ; | ||
|
||
CREATE TABLE IF NOT EXISTS `yoneticiler` ( | ||
`uye_id` int(11) NOT NULL AUTO_INCREMENT, | ||
`uye_adi` varchar(20) COLLATE utf8_turkish_ci NOT NULL, | ||
`sifre` varchar(50) COLLATE utf8_turkish_ci NOT NULL, | ||
PRIMARY KEY (`uye_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci AUTO_INCREMENT=2 ; |
Oops, something went wrong.