first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:22:29 +03:00
commit ec28a2024d
208 changed files with 23836 additions and 0 deletions

View File

@@ -0,0 +1,740 @@
-- PostgreSQL Database Backup
-- Database: server_dj
-- Date: 2026-01-03 00:03:26.147138
-- Created by Django Backup System using psycopg2
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
-- Table: accounts_customuser
DROP TABLE IF EXISTS "accounts_customuser" CASCADE;
CREATE TABLE "accounts_customuser" (
"id" BIGSERIAL,
"password" VARCHAR(128) NOT NULL,
"last_login" TIMESTAMP WITH TIME ZONE,
"is_superuser" BOOLEAN NOT NULL,
"email" VARCHAR(254) NOT NULL,
"first_name" VARCHAR(150) NOT NULL,
"last_name" VARCHAR(150) NOT NULL,
"is_staff" BOOLEAN NOT NULL,
"is_active" BOOLEAN NOT NULL,
"date_joined" TIMESTAMP WITH TIME ZONE NOT NULL
);
-- Data for table: accounts_customuser
INSERT INTO "accounts_customuser" ("id", "password", "last_login", "is_superuser", "email", "first_name", "last_name", "is_staff", "is_active", "date_joined") VALUES (1, 'pbkdf2_sha256$1000000$WplM35argbILEm9XB766gV$NslaYI4KLBSQi4x3OcJHTU5znmKBbeTqQWv0FM46UXc=', NULL, true, 'admin@example.com', '', '', true, true, '2025-12-30T18:17:13.754386+00:00'::timestamptz);
INSERT INTO "accounts_customuser" ("id", "password", "last_login", "is_superuser", "email", "first_name", "last_name", "is_staff", "is_active", "date_joined") VALUES (2, 'pbkdf2_sha256$1000000$KWo73NKEPK7ASp4DScmL8g$qxFFzxuOEhW3AS3lbJvXssxZv+n3G/tHZh5e3uoHNPc=', '2026-01-02T05:08:11.472584+00:00'::timestamptz, true, 'beyhan@beyhan.dev', '', '', true, true, '2025-12-30T18:53:28.829042+00:00'::timestamptz);
-- Table: accounts_customuser_groups
DROP TABLE IF EXISTS "accounts_customuser_groups" CASCADE;
CREATE TABLE "accounts_customuser_groups" (
"id" BIGSERIAL,
"customuser_id" BIGINT NOT NULL,
"group_id" INTEGER NOT NULL
);
-- Table: accounts_customuser_user_permissions
DROP TABLE IF EXISTS "accounts_customuser_user_permissions" CASCADE;
CREATE TABLE "accounts_customuser_user_permissions" (
"id" BIGSERIAL,
"customuser_id" BIGINT NOT NULL,
"permission_id" INTEGER NOT NULL
);
-- Table: auth_group
DROP TABLE IF EXISTS "auth_group" CASCADE;
CREATE TABLE "auth_group" (
"id" SERIAL,
"name" VARCHAR(150) NOT NULL
);
-- Table: auth_group_permissions
DROP TABLE IF EXISTS "auth_group_permissions" CASCADE;
CREATE TABLE "auth_group_permissions" (
"id" BIGSERIAL,
"group_id" INTEGER NOT NULL,
"permission_id" INTEGER NOT NULL
);
-- Table: auth_permission
DROP TABLE IF EXISTS "auth_permission" CASCADE;
CREATE TABLE "auth_permission" (
"id" SERIAL,
"name" VARCHAR(255) NOT NULL,
"content_type_id" INTEGER NOT NULL,
"codename" VARCHAR(100) NOT NULL
);
-- Data for table: auth_permission
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (1, 'Can add log entry', 1, 'add_logentry');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (2, 'Can change log entry', 1, 'change_logentry');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (3, 'Can delete log entry', 1, 'delete_logentry');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (4, 'Can view log entry', 1, 'view_logentry');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (5, 'Can add permission', 2, 'add_permission');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (6, 'Can change permission', 2, 'change_permission');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (7, 'Can delete permission', 2, 'delete_permission');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (8, 'Can view permission', 2, 'view_permission');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (9, 'Can add group', 3, 'add_group');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (10, 'Can change group', 3, 'change_group');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (11, 'Can delete group', 3, 'delete_group');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (12, 'Can view group', 3, 'view_group');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (13, 'Can add content type', 4, 'add_contenttype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (14, 'Can change content type', 4, 'change_contenttype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (15, 'Can delete content type', 4, 'delete_contenttype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (16, 'Can view content type', 4, 'view_contenttype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (17, 'Can add session', 5, 'add_session');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (18, 'Can change session', 5, 'change_session');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (19, 'Can delete session', 5, 'delete_session');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (20, 'Can view session', 5, 'view_session');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (21, 'Can add association', 6, 'add_association');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (22, 'Can change association', 6, 'change_association');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (23, 'Can delete association', 6, 'delete_association');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (24, 'Can view association', 6, 'view_association');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (25, 'Can add code', 7, 'add_code');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (26, 'Can change code', 7, 'change_code');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (27, 'Can delete code', 7, 'delete_code');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (28, 'Can view code', 7, 'view_code');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (29, 'Can add nonce', 8, 'add_nonce');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (30, 'Can change nonce', 8, 'change_nonce');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (31, 'Can delete nonce', 8, 'delete_nonce');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (32, 'Can view nonce', 8, 'view_nonce');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (33, 'Can add user social auth', 9, 'add_usersocialauth');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (34, 'Can change user social auth', 9, 'change_usersocialauth');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (35, 'Can delete user social auth', 9, 'delete_usersocialauth');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (36, 'Can view user social auth', 9, 'view_usersocialauth');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (37, 'Can add partial', 10, 'add_partial');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (38, 'Can change partial', 10, 'change_partial');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (39, 'Can delete partial', 10, 'delete_partial');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (40, 'Can view partial', 10, 'view_partial');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (41, 'Can add site', 11, 'add_site');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (42, 'Can change site', 11, 'change_site');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (43, 'Can delete site', 11, 'delete_site');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (44, 'Can view site', 11, 'view_site');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (45, 'Can add user', 12, 'add_customuser');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (46, 'Can change user', 12, 'change_customuser');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (47, 'Can delete user', 12, 'delete_customuser');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (48, 'Can view user', 12, 'view_customuser');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (49, 'Can add Post Tagı', 13, 'add_tags');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (50, 'Can change Post Tagı', 13, 'change_tags');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (51, 'Can delete Post Tagı', 13, 'delete_tags');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (52, 'Can view Post Tagı', 13, 'view_tags');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (53, 'Can add Post Kategori', 14, 'add_category');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (54, 'Can change Post Kategori', 14, 'change_category');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (55, 'Can delete Post Kategori', 14, 'delete_category');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (56, 'Can view Post Kategori', 14, 'view_category');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (57, 'Can add Post', 15, 'add_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (58, 'Can change Post', 15, 'change_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (59, 'Can delete Post', 15, 'delete_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (60, 'Can view Post', 15, 'view_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (61, 'Can add Kategori Ziyareti', 16, 'add_categoryview');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (62, 'Can change Kategori Ziyareti', 16, 'change_categoryview');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (63, 'Can delete Kategori Ziyareti', 16, 'delete_categoryview');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (64, 'Can view Kategori Ziyareti', 16, 'view_categoryview');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (65, 'Can add Post Yorum', 17, 'add_comment');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (66, 'Can change Post Yorum', 17, 'change_comment');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (67, 'Can delete Post Yorum', 17, 'delete_comment');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (68, 'Can view Post Yorum', 17, 'view_comment');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (69, 'Can add Veritabanı Yedeği', 18, 'add_databasebackup');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (70, 'Can change Veritabanı Yedeği', 18, 'change_databasebackup');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (71, 'Can delete Veritabanı Yedeği', 18, 'delete_databasebackup');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (72, 'Can view Veritabanı Yedeği', 18, 'view_databasebackup');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (73, 'Can add Banner', 19, 'add_banner');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (74, 'Can change Banner', 19, 'change_banner');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (75, 'Can delete Banner', 19, 'delete_banner');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (76, 'Can view Banner', 19, 'view_banner');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (77, 'Can add Site Ayarı', 20, 'add_setting');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (78, 'Can change Site Ayarı', 20, 'change_setting');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (79, 'Can delete Site Ayarı', 20, 'delete_setting');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (80, 'Can view Site Ayarı', 20, 'view_setting');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (81, 'Can add Json To Type', 21, 'add_jsontotype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (82, 'Can change Json To Type', 21, 'change_jsontotype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (83, 'Can delete Json To Type', 21, 'delete_jsontotype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (84, 'Can view Json To Type', 21, 'view_jsontotype');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (85, 'Can add Post', 22, 'add_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (86, 'Can change Post', 22, 'change_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (87, 'Can delete Post', 22, 'delete_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (88, 'Can view Post', 22, 'view_post');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (89, 'Can add Post', 22, 'add_postimages');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (90, 'Can change Post', 22, 'change_postimages');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (91, 'Can delete Post', 22, 'delete_postimages');
INSERT INTO "auth_permission" ("id", "name", "content_type_id", "codename") VALUES (92, 'Can view Post', 22, 'view_postimages');
-- Table: backup_databasebackup
DROP TABLE IF EXISTS "backup_databasebackup" CASCADE;
CREATE TABLE "backup_databasebackup" (
"id" BIGSERIAL,
"name" VARCHAR(255) NOT NULL,
"file_path" VARCHAR(500),
"file_size" BIGINT,
"status" VARCHAR(20) NOT NULL,
"backup_type" VARCHAR(20) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"completed_at" TIMESTAMP WITH TIME ZONE,
"error_message" TEXT,
"notes" TEXT,
"created_by_id" BIGINT
);
-- Data for table: backup_databasebackup
INSERT INTO "backup_databasebackup" ("id", "name", "file_path", "file_size", "status", "backup_type", "created_at", "completed_at", "error_message", "notes", "created_by_id") VALUES (1, 'Manuel Yedek - 2025-12-30 20:48:48', 'C:\Sites\dj52\backups\backup_server_dj_20251230_124848.sql', 38279, 'completed', 'manual', '2025-12-30T20:48:48.445516+00:00'::timestamptz, '2025-12-30T20:48:49.475591+00:00'::timestamptz, NULL, NULL, 2);
INSERT INTO "backup_databasebackup" ("id", "name", "file_path", "file_size", "status", "backup_type", "created_at", "completed_at", "error_message", "notes", "created_by_id") VALUES (2, 'Manuel Yedek - 2026-01-02 19:21:00', 'C:\Sites\dj52\backups\backup_server_dj_20260102_112100.sql', 63942, 'completed', 'manual', '2026-01-02T19:21:00.851633+00:00'::timestamptz, '2026-01-02T19:21:02.355985+00:00'::timestamptz, NULL, NULL, 2);
INSERT INTO "backup_databasebackup" ("id", "name", "file_path", "file_size", "status", "backup_type", "created_at", "completed_at", "error_message", "notes", "created_by_id") VALUES (3, 'Manuel Yedek - 2026-01-03 00:03:25', NULL, NULL, 'in_progress', 'manual', '2026-01-03T00:03:25.980164+00:00'::timestamptz, NULL, NULL, NULL, 2);
-- Table: banners
DROP TABLE IF EXISTS "banners" CASCADE;
CREATE TABLE "banners" (
"id" BIGSERIAL,
"color" VARCHAR(25) NOT NULL,
"title" VARCHAR(254),
"text1" VARCHAR(254),
"text2" VARCHAR(254),
"text4" VARCHAR(254),
"text5" VARCHAR(254),
"image" VARCHAR(100) NOT NULL,
"image_k" VARCHAR(100),
"image_k_txt" VARCHAR(254),
"is_active" BOOLEAN NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL
);
-- Table: categories
DROP TABLE IF EXISTS "categories" CASCADE;
CREATE TABLE "categories" (
"id" BIGSERIAL,
"title" VARCHAR(254) NOT NULL,
"keywords" VARCHAR(254) NOT NULL,
"description" VARCHAR(254) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"is_active" BOOLEAN NOT NULL,
"order" INTEGER NOT NULL,
"slug" VARCHAR(250) NOT NULL,
"image" VARCHAR(100),
"parent_id" BIGINT
);
-- Data for table: categories
INSERT INTO "categories" ("id", "title", "keywords", "description", "created_at", "updated_at", "is_active", "order", "slug", "image", "parent_id") VALUES (1, 'Linux', 'resd', 'dfd', '2026-01-02T23:29:40.546955+00:00'::timestamptz, '2026-01-02T23:29:40.546971+00:00'::timestamptz, true, 1, 'linux', '', NULL);
INSERT INTO "categories" ("id", "title", "keywords", "description", "created_at", "updated_at", "is_active", "order", "slug", "image", "parent_id") VALUES (2, 'Ubuntu', 'Ubuntu', 'Ubuntu', '2026-01-02T23:58:01.774338+00:00'::timestamptz, '2026-01-02T23:58:01.774421+00:00'::timestamptz, true, 1, 'ubuntu', '', 1);
INSERT INTO "categories" ("id", "title", "keywords", "description", "created_at", "updated_at", "is_active", "order", "slug", "image", "parent_id") VALUES (3, 'Debian', 'Debian', 'Debian', '2026-01-02T23:59:00.523219+00:00'::timestamptz, '2026-01-02T23:59:00.523243+00:00'::timestamptz, true, 1, 'debian', '', 1);
-- Table: category_views
DROP TABLE IF EXISTS "category_views" CASCADE;
CREATE TABLE "category_views" (
"id" BIGSERIAL,
"ip_address" INET NOT NULL,
"user_agent" TEXT,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"category_id" BIGINT NOT NULL
);
-- Table: comments
DROP TABLE IF EXISTS "comments" CASCADE;
CREATE TABLE "comments" (
"id" BIGSERIAL,
"title" VARCHAR(254) NOT NULL,
"body" TEXT NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"is_active" BOOLEAN NOT NULL,
"slug" VARCHAR(50) NOT NULL,
"parent_id" BIGINT,
"user_id" BIGINT NOT NULL,
"product_id" BIGINT NOT NULL
);
-- Table: django_admin_log
DROP TABLE IF EXISTS "django_admin_log" CASCADE;
CREATE TABLE "django_admin_log" (
"id" SERIAL,
"action_time" TIMESTAMP WITH TIME ZONE NOT NULL,
"object_id" TEXT,
"object_repr" VARCHAR(200) NOT NULL,
"action_flag" SMALLINT NOT NULL,
"change_message" TEXT NOT NULL,
"content_type_id" INTEGER,
"user_id" BIGINT NOT NULL
);
-- Data for table: django_admin_log
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (1, '2025-12-30T18:55:39.094335+00:00'::timestamptz, '1', 'Beyhan Oğur Kişisel Web Sitesi', 1, '[{"added": {}}]', 20, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (2, '2025-12-30T18:55:54.180958+00:00'::timestamptz, '1', 'Beyhan Oğur Kişisel Web Sitesi', 2, '[{"changed": {"fields": ["Twitter", "Yay\u0131ndam\u0131"]}}]', 20, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (3, '2025-12-30T19:09:45.598763+00:00'::timestamptz, '1', 'Beyhan Oğur Kişisel Web Sitesi', 2, '[]', 20, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (4, '2025-12-31T02:00:21.879635+00:00'::timestamptz, '1', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (5, '2025-12-31T02:00:21.879746+00:00'::timestamptz, '2', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (6, '2025-12-31T02:00:21.879803+00:00'::timestamptz, '3', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (7, '2025-12-31T02:00:21.879852+00:00'::timestamptz, '4', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (8, '2025-12-31T02:00:21.879896+00:00'::timestamptz, '5', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (9, '2025-12-31T02:00:21.879937+00:00'::timestamptz, '6', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (10, '2025-12-31T02:00:21.879977+00:00'::timestamptz, '7', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (11, '2025-12-31T02:00:21.880016+00:00'::timestamptz, '8', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (12, '2025-12-31T02:00:21.880055+00:00'::timestamptz, '9', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (13, '2025-12-31T02:00:21.880096+00:00'::timestamptz, '10', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (14, '2025-12-31T02:00:21.880135+00:00'::timestamptz, '11', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (15, '2025-12-31T02:03:31.317961+00:00'::timestamptz, '13', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (16, '2025-12-31T03:11:00.583368+00:00'::timestamptz, '12', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (17, '2025-12-31T03:11:00.585210+00:00'::timestamptz, '14', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (18, '2025-12-31T03:11:00.585261+00:00'::timestamptz, '15', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (19, '2025-12-31T03:11:00.585295+00:00'::timestamptz, '16', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (20, '2025-12-31T03:11:00.585326+00:00'::timestamptz, '17', 'Resimler: test', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (21, '2025-12-31T03:11:00.585355+00:00'::timestamptz, '18', 'Resimler: dfgdfgdfgdf', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (22, '2025-12-31T03:11:00.585383+00:00'::timestamptz, '19', 'Resimler: sfsf', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (23, '2025-12-31T03:11:00.585410+00:00'::timestamptz, '20', 'Resimler: sfsf', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (24, '2025-12-31T03:11:00.585437+00:00'::timestamptz, '21', 'Resimler: bg.png', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (25, '2025-12-31T03:11:00.585463+00:00'::timestamptz, '22', 'Resimler: man-8078578.jpg', 3, '', 22, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (26, '2025-12-31T03:57:02.170697+00:00'::timestamptz, '2', 'imagesUpload', 2, '[{"changed": {"fields": ["Type Veri", "Yay\u0131ndam\u0131"]}}]', 21, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (27, '2026-01-02T23:29:40.617717+00:00'::timestamptz, '1', 'Linux', 1, '[{"added": {}}]', 14, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (28, '2026-01-02T23:29:58.504694+00:00'::timestamptz, '1', 'linux', 1, '[{"added": {}}]', 13, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (29, '2026-01-02T23:30:15.827503+00:00'::timestamptz, '1', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 1, '[{"added": {}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (30, '2026-01-02T23:34:28.431444+00:00'::timestamptz, '1', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 2, '[{"changed": {"fields": ["Image"]}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (31, '2026-01-02T23:38:44.320607+00:00'::timestamptz, '1', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 2, '[{"changed": {"fields": ["Image"]}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (32, '2026-01-02T23:42:53.610393+00:00'::timestamptz, '1', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 2, '[{"changed": {"fields": ["Image"]}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (33, '2026-01-02T23:47:10.428246+00:00'::timestamptz, '1', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 2, '[{"changed": {"fields": ["Image"]}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (34, '2026-01-02T23:49:04.119509+00:00'::timestamptz, '2', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 1, '[{"added": {}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (35, '2026-01-02T23:51:46.297558+00:00'::timestamptz, '1', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 2, '[{"changed": {"fields": ["Image"]}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (36, '2026-01-02T23:55:25.046404+00:00'::timestamptz, '2', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 2, '[{"changed": {"fields": ["Image"]}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (37, '2026-01-02T23:55:53.466232+00:00'::timestamptz, '1', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 3, '', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (38, '2026-01-02T23:55:53.466315+00:00'::timestamptz, '2', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 3, '', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (39, '2026-01-02T23:56:31.046096+00:00'::timestamptz, '3', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 1, '[{"added": {}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (40, '2026-01-02T23:57:00.762261+00:00'::timestamptz, '3', 'Postlar: Beyhan Oğur Kişisel Web Sitesi', 3, '', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (41, '2026-01-02T23:58:01.818977+00:00'::timestamptz, '2', 'Linux -> Ubuntu', 1, '[{"added": {}}]', 14, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (42, '2026-01-02T23:58:13.249637+00:00'::timestamptz, '2', 'Ubuntu', 1, '[{"added": {}}]', 13, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (43, '2026-01-02T23:58:28.842114+00:00'::timestamptz, '4', 'Postlar: Ubuntu', 1, '[{"added": {}}]', 15, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (44, '2026-01-02T23:59:00.567345+00:00'::timestamptz, '3', 'Linux -> Debian', 1, '[{"added": {}}]', 14, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (45, '2026-01-02T23:59:10.997052+00:00'::timestamptz, '3', 'Debian', 1, '[{"added": {}}]', 13, 2);
INSERT INTO "django_admin_log" ("id", "action_time", "object_id", "object_repr", "action_flag", "change_message", "content_type_id", "user_id") VALUES (46, '2026-01-02T23:59:27.089944+00:00'::timestamptz, '5', 'Postlar: Debian', 1, '[{"added": {}}]', 15, 2);
-- Table: django_content_type
DROP TABLE IF EXISTS "django_content_type" CASCADE;
CREATE TABLE "django_content_type" (
"id" SERIAL,
"app_label" VARCHAR(100) NOT NULL,
"model" VARCHAR(100) NOT NULL
);
-- Data for table: django_content_type
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (1, 'admin', 'logentry');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (2, 'auth', 'permission');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (3, 'auth', 'group');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (4, 'contenttypes', 'contenttype');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (5, 'sessions', 'session');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (6, 'social_django', 'association');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (7, 'social_django', 'code');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (8, 'social_django', 'nonce');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (9, 'social_django', 'usersocialauth');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (10, 'social_django', 'partial');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (11, 'sites', 'site');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (12, 'accounts', 'customuser');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (13, 'blog', 'tags');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (14, 'blog', 'category');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (15, 'blog', 'post');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (16, 'blog', 'categoryview');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (17, 'blog', 'comment');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (18, 'backup', 'databasebackup');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (19, 'settings', 'banner');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (20, 'settings', 'setting');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (21, 'utils', 'jsontotype');
INSERT INTO "django_content_type" ("id", "app_label", "model") VALUES (22, 'image', 'postimages');
-- Table: django_migrations
DROP TABLE IF EXISTS "django_migrations" CASCADE;
CREATE TABLE "django_migrations" (
"id" BIGSERIAL,
"app" VARCHAR(255) NOT NULL,
"name" VARCHAR(255) NOT NULL,
"applied" TIMESTAMP WITH TIME ZONE NOT NULL
);
-- Data for table: django_migrations
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (1, 'contenttypes', '0001_initial', '2025-12-30T18:17:08.330092+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (2, 'contenttypes', '0002_remove_content_type_name', '2025-12-30T18:17:08.351286+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (3, 'auth', '0001_initial', '2025-12-30T18:17:08.445210+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (4, 'auth', '0002_alter_permission_name_max_length', '2025-12-30T18:17:08.458967+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (5, 'auth', '0003_alter_user_email_max_length', '2025-12-30T18:17:08.468563+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (6, 'auth', '0004_alter_user_username_opts', '2025-12-30T18:17:08.478860+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (7, 'auth', '0005_alter_user_last_login_null', '2025-12-30T18:17:08.491305+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (8, 'auth', '0006_require_contenttypes_0002', '2025-12-30T18:17:08.494948+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (9, 'auth', '0007_alter_validators_add_error_messages', '2025-12-30T18:17:08.504616+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (10, 'auth', '0008_alter_user_username_max_length', '2025-12-30T18:17:08.516260+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (11, 'auth', '0009_alter_user_last_name_max_length', '2025-12-30T18:17:08.526555+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (12, 'auth', '0010_alter_group_name_max_length', '2025-12-30T18:17:08.547665+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (13, 'auth', '0011_update_proxy_permissions', '2025-12-30T18:17:08.556969+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (14, 'auth', '0012_alter_user_first_name_max_length', '2025-12-30T18:17:08.566970+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (15, 'accounts', '0001_initial', '2025-12-30T18:17:08.652656+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (16, 'admin', '0001_initial', '2025-12-30T18:17:08.702073+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (17, 'admin', '0002_logentry_remove_auto_add', '2025-12-30T18:17:08.716545+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (18, 'admin', '0003_logentry_add_action_flag_choices', '2025-12-30T18:17:08.731230+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (19, 'backup', '0001_initial', '2025-12-30T18:17:08.781407+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (20, 'blog', '0001_initial', '2025-12-30T18:17:09.087345+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (21, 'sessions', '0001_initial', '2025-12-30T18:17:09.119329+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (22, 'settings', '0001_initial', '2025-12-30T18:17:09.157590+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (23, 'sites', '0001_initial', '2025-12-30T18:17:09.171572+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (24, 'sites', '0002_alter_domain_unique', '2025-12-30T18:17:09.183897+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (25, 'default', '0001_initial', '2025-12-30T18:17:09.384648+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (26, 'social_auth', '0001_initial', '2025-12-30T18:17:09.387073+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (27, 'default', '0002_add_related_name', '2025-12-30T18:17:09.417333+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (28, 'social_auth', '0002_add_related_name', '2025-12-30T18:17:09.419107+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (29, 'default', '0003_alter_email_max_length', '2025-12-30T18:17:09.434824+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (30, 'social_auth', '0003_alter_email_max_length', '2025-12-30T18:17:09.436128+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (31, 'default', '0004_auto_20160423_0400', '2025-12-30T18:17:09.459672+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (32, 'social_auth', '0004_auto_20160423_0400', '2025-12-30T18:17:09.461654+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (33, 'social_auth', '0005_auto_20160727_2333', '2025-12-30T18:17:09.470888+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (34, 'social_django', '0006_partial', '2025-12-30T18:17:09.497122+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (35, 'social_django', '0007_code_timestamp', '2025-12-30T18:17:09.516668+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (36, 'social_django', '0008_partial_timestamp', '2025-12-30T18:17:09.533165+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (37, 'social_django', '0009_auto_20191118_0520', '2025-12-30T18:17:09.585689+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (38, 'social_django', '0010_uid_db_index', '2025-12-30T18:17:09.618967+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (39, 'social_django', '0011_alter_id_fields', '2025-12-30T18:17:09.808993+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (40, 'social_django', '0012_usersocialauth_extra_data_new', '2025-12-30T18:17:09.857523+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (41, 'social_django', '0013_migrate_extra_data', '2025-12-30T18:17:09.918348+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (42, 'social_django', '0014_remove_usersocialauth_extra_data', '2025-12-30T18:17:09.945497+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (43, 'social_django', '0015_rename_extra_data_new_usersocialauth_extra_data', '2025-12-30T18:17:09.975453+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (44, 'social_django', '0016_alter_usersocialauth_extra_data', '2025-12-30T18:17:09.996294+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (45, 'social_django', '0017_usersocialauth_user_social_auth_uid_required', '2025-12-30T18:17:10.029865+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (46, 'utils', '0001_initial', '2025-12-30T18:17:10.084578+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (47, 'utils', '0002_alter_jsontotype_json_data', '2025-12-30T18:17:10.120797+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (48, 'utils', '0003_alter_jsontotype_type_data', '2025-12-30T18:17:10.156766+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (49, 'social_django', '0004_auto_20160423_0400', '2025-12-30T18:17:10.161715+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (50, 'social_django', '0003_alter_email_max_length', '2025-12-30T18:17:10.163125+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (51, 'social_django', '0002_add_related_name', '2025-12-30T18:17:10.164540+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (52, 'social_django', '0005_auto_20160727_2333', '2025-12-30T18:17:10.165856+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (53, 'social_django', '0001_initial', '2025-12-30T18:17:10.167315+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (54, 'image', '0001_initial', '2025-12-31T01:22:09.229707+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (55, 'image', '0002_rename_post_postimages', '2025-12-31T01:28:52.397886+00:00'::timestamptz);
INSERT INTO "django_migrations" ("id", "app", "name", "applied") VALUES (56, 'blog', '0002_post_thumb', '2026-01-02T23:28:02.766992+00:00'::timestamptz);
-- Table: django_session
DROP TABLE IF EXISTS "django_session" CASCADE;
CREATE TABLE "django_session" (
"session_key" VARCHAR(40) NOT NULL,
"session_data" TEXT NOT NULL,
"expire_date" TIMESTAMP WITH TIME ZONE NOT NULL
);
-- Data for table: django_session
INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('g4i88yck7vdoxe9eutjj3w9whhkmyw4g', '.eJxVjEEOwiAQRe_C2hBgEKhL9z0DGRhGqoYmpV0Z765NutDtf-_9l4i4rTVuvSxxInERRpx-t4T5UdoO6I7tNss8t3WZktwVedAux5nK83q4fwcVe_3Wvngmq4rLGrxGcJwGhZQNGD4ba7OxbEOAQA41kvUqZQAHgRm5uEG8P-SaOAU:1vaeqg:7qWgmCY7VwYRe7Mmjx_vtt6rIlV5oX4a7MA6hRz2dew', '2026-01-13T18:53:38.149980+00:00'::timestamptz);
INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('g6dskgk17q7nijwap7dp7d03uj7ofa1x', '.eJxVjDEOgzAMAP_iuYpCnCaBsTtvQI4dF9oKJAJT1b9XSAztene6Nwy0b-Ow17IOk0AHDi6_LBM_y3wIedB8Xwwv87ZO2RyJOW01_SLldTvbv8FIdYQOYokq3pbADcaGMGhuLQk7dHp13rPz6lPCJIEaEh9tZsSASZW0hBY-X-SaOAU:1vagPN:pitIT9jBFoXSAqrMh8KpghHPhppr-LQZ684BymlO7sM', '2026-01-13T20:33:33.126150+00:00'::timestamptz);
INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('k49n76nmufs4pn4iqtag08y90m2x892a', '.eJxVjEEOwiAQRe_C2hBgEKhL9z0DGRhGqoYmpV0Z765NutDtf-_9l4i4rTVuvSxxInERRpx-t4T5UdoO6I7tNss8t3WZktwVedAux5nK83q4fwcVe_3Wvngmq4rLGrxGcJwGhZQNGD4ba7OxbEOAQA41kvUqZQAHgRm5uEG8P-SaOAU:1valU7:jfm6FMwEuLBDGpRCWMs11GAJzjaunLBvFVG6RPsJdvU', '2026-01-14T01:58:47.775708+00:00'::timestamptz);
INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('t0sfo6qw4ot8wta22jjjyebj8gwnngn4', '.eJxVjEEOwiAQRe_C2hBgEKhL9z0DGRhGqoYmpV0Z765NutDtf-_9l4i4rTVuvSxxInERRpx-t4T5UdoO6I7tNss8t3WZktwVedAux5nK83q4fwcVe_3Wvngmq4rLGrxGcJwGhZQNGD4ba7OxbEOAQA41kvUqZQAHgRm5uEG8P-SaOAU:1vbXOV:yzBl365vGyiDDlBIxcL3k3HJroN76hmgapE8smFpwnU', '2026-01-16T05:08:11.508142+00:00'::timestamptz);
-- Table: django_site
DROP TABLE IF EXISTS "django_site" CASCADE;
CREATE TABLE "django_site" (
"id" SERIAL,
"domain" VARCHAR(100) NOT NULL,
"name" VARCHAR(50) NOT NULL
);
-- Data for table: django_site
INSERT INTO "django_site" ("id", "domain", "name") VALUES (1, 'example.com', 'example.com');
-- Table: images
DROP TABLE IF EXISTS "images" CASCADE;
CREATE TABLE "images" (
"id" BIGSERIAL,
"title" VARCHAR(254) NOT NULL,
"path" VARCHAR(254) NOT NULL,
"processed_path" VARCHAR(254) NOT NULL,
"original_filename" VARCHAR(254) NOT NULL,
"format" VARCHAR(254) NOT NULL,
"width" INTEGER NOT NULL,
"height" INTEGER NOT NULL,
"size" INTEGER NOT NULL,
"quality" INTEGER NOT NULL,
"slug" VARCHAR(250) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"is_active" BOOLEAN NOT NULL,
"is_front" BOOLEAN NOT NULL
);
-- Data for table: images
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (23, 'man-8078578.jpg', 'processed/c45196ca-c4c8-483c-960f-7b1abf8348fd.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 2500, 2500, 842270, 85, 'man-8078578jpg', '2025-12-31T03:11:25.128251+00:00'::timestamptz, '2025-12-31T03:11:25.128333+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (24, 'man-8078578.jpg', 'processed/a909569d-2eb2-4695-b15a-892d1e15bfb3.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 96194, 85, 'man-8078578jpg-2', '2025-12-31T03:14:33.379003+00:00'::timestamptz, '2025-12-31T03:14:33.379054+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (25, 'bg.png', 'processed/5525f98c-b5ca-401f-b94d-c600b6d54cc5.webp', 'bg.png', 'bg.png', 'webp', 1024, 768, 2056, 85, 'bgpng', '2025-12-31T03:27:35.979888+00:00'::timestamptz, '2025-12-31T03:27:35.979991+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (26, 'man-8078578.jpg', 'processed/2e569461-b384-44b6-82b4-cd038fc52696.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 96194, 85, 'man-8078578jpg-3', '2025-12-31T03:39:24.337216+00:00'::timestamptz, '2025-12-31T03:39:24.337273+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (27, 'fdg', 'processed/cb0b5884-3350-41b2-8719-6568afdb6eaf.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 1024, 768, 98594, 85, 'fdg', '2025-12-31T03:43:47.915365+00:00'::timestamptz, '2025-12-31T03:43:47.915583+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (28, 'bg.png', 'processed/19c28281-1e80-4ba7-a7a7-cd814260165b.webp', 'bg.png', 'bg.png', 'webp', 1024, 768, 2056, 85, 'bgpng-2', '2025-12-31T03:54:17.076433+00:00'::timestamptz, '2025-12-31T03:54:17.076492+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (29, 'man-8078578.jpg', 'processed/3ae4d4c9-4fe9-4ceb-ad71-a24e9d328f8e.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1000, 2500, 340654, 85, 'man-8078578jpg-4', '2025-12-31T03:54:51.810029+00:00'::timestamptz, '2025-12-31T03:54:51.810048+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (30, 'man-8078578.jpg', 'processed/3f154559-45df-4b76-acdb-7de9c30c55cc.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 1500, 2500, 671539, 85, 'man-8078578jpg-5', '2025-12-31T03:55:16.103659+00:00'::timestamptz, '2025-12-31T03:55:16.103677+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (31, 'man-8078578.jpg', 'processed/6def36bd-da5b-40be-b3a6-c07c7b9897cc.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 1750, 2500, 800443, 85, 'man-8078578jpg-6', '2025-12-31T03:55:33.141032+00:00'::timestamptz, '2025-12-31T03:55:33.141056+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (32, 'man-8078578.jpg', 'processed/8d341f66-2283-4372-bb0e-ce77cad29c98.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 2000, 2500, 793785, 85, 'man-8078578jpg-7', '2025-12-31T03:55:48.214844+00:00'::timestamptz, '2025-12-31T03:55:48.214863+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (33, 'man-8078578.jpg', 'processed/308c3fa8-81fc-4f6d-9977-7d9c7dce5b4f.png', 'man-8078578.jpg', 'man-8078578.jpg', 'png', 2000, 2500, 4380851, 85, 'man-8078578jpg-8', '2025-12-31T03:56:03.307634+00:00'::timestamptz, '2025-12-31T03:56:03.307657+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (34, 'man-8078578.jpg', 'processed/c29b9093-5427-460a-8799-770a4f65a7e4.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 2000, 2500, 793785, 100, 'man-8078578jpg-9', '2025-12-31T04:35:45.558471+00:00'::timestamptz, '2025-12-31T04:35:45.558554+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (35, 'man-8078578.jpg', 'processed/5768116b-f8e6-46c1-a59a-be73ec7cda39.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 2000, 2500, 918693, 100, 'man-8078578jpg-10', '2025-12-31T04:41:37.967876+00:00'::timestamptz, '2025-12-31T04:41:37.967907+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (36, 'man-8078578.jpg', 'processed/672e27e1-8f0e-4295-8f85-e67cb6bd389a.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 2000, 2000, 698099, 100, 'man-8078578jpg-11', '2025-12-31T04:41:55.643779+00:00'::timestamptz, '2025-12-31T04:41:55.643812+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (37, 'dsfsf', 'processed/782cd500-0981-4587-b34a-16de07bfdaf9.webp', 'team-4451672.jpg', 'team-4451672.jpg', 'webp', 1024, 768, 126140, 85, 'dsfsf', '2025-12-31T04:46:54.262233+00:00'::timestamptz, '2025-12-31T04:46:54.262260+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (38, 'dsfsf', 'processed/8b0cf958-e486-487c-8761-4072cf478f27.webp', 'team-4451672.jpg', 'team-4451672.jpg', 'webp', 1024, 768, 126140, 85, 'dsfsf-1', '2025-12-31T04:47:11.907274+00:00'::timestamptz, '2025-12-31T04:47:11.907477+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (39, 'man-8078578.jpg', 'processed/a60f8a14-1236-4e4b-a333-6b05212c8f11.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 174262, 85, 'man-8078578jpg-12', '2025-12-31T04:47:43.466100+00:00'::timestamptz, '2025-12-31T04:47:43.466215+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (40, 'man-8078578.jpg', 'processed/9b7d9dc4-54b1-44d9-8330-c70d06166e0c.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 174262, 85, 'man-8078578jpg-13', '2025-12-31T04:51:50.539713+00:00'::timestamptz, '2025-12-31T04:51:50.539796+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (41, 'team-4451672.jpg', 'processed/1368495e-8791-4771-a775-20f738df23da.webp', 'team-4451672.jpg', 'team-4451672.jpg', 'webp', 1024, 768, 126140, 85, 'team-4451672jpg', '2025-12-31T04:57:50.642611+00:00'::timestamptz, '2025-12-31T04:57:50.642723+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (42, 'fsdfs', 'processed/1bb738e2-bdb9-4ca0-829d-ed7f517740f5.webp', 'bg.png', 'bg.png', 'webp', 1024, 768, 5094, 85, 'fsdfs', '2025-12-31T05:01:31.600829+00:00'::timestamptz, '2025-12-31T05:01:31.600943+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (43, 'man-8078578.jpg', 'processed/4b841cf0-2f24-42b0-a8a2-fc87b81fd476.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 174262, 85, 'man-8078578jpg-14', '2025-12-31T05:04:23.886081+00:00'::timestamptz, '2025-12-31T05:04:23.886195+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (44, 'man-8078578.jpg', 'processed/228ed09a-3064-4f0b-b286-61f5ae4ff03a.png', 'man-8078578.jpg', 'man-8078578.jpg', 'png', 1024, 768, 922822, 85, 'man-8078578jpg-15', '2025-12-31T05:05:11.322090+00:00'::timestamptz, '2025-12-31T05:05:11.322119+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (45, 'man-8078578.jpg', 'processed/1fbcab6f-f70f-40c7-a198-184c9f93b563.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 1024, 768, 170509, 85, 'man-8078578jpg-16', '2025-12-31T05:05:17.797040+00:00'::timestamptz, '2025-12-31T05:05:17.797068+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (46, 'man-8078578.jpg', 'processed/c043015d-40ce-4050-9062-4ee827fbd3bc.png', 'man-8078578.jpg', 'man-8078578.jpg', 'png', 1024, 768, 922822, 85, 'man-8078578jpg-17', '2025-12-31T05:05:22.783451+00:00'::timestamptz, '2025-12-31T05:05:22.783471+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (47, 'man-8078578.jpg', 'processed/c33bec56-00e4-4cd3-bd94-771c3635fbcb.png', 'man-8078578.jpg', 'man-8078578.jpg', 'png', 1024, 768, 922822, 85, 'man-8078578jpg-18', '2025-12-31T05:05:25.607543+00:00'::timestamptz, '2025-12-31T05:05:25.607578+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (48, 'man-8078578.jpg', 'processed/8939ca86-5150-4e13-905e-c2d332ed79f6.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 174262, 85, 'man-8078578jpg-19', '2025-12-31T05:05:34.833822+00:00'::timestamptz, '2025-12-31T05:05:34.833841+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (49, 'man-8078578.jpg', 'processed/f0fef162-8a54-4158-800e-6b5d24c4163f.jpg', 'man-8078578.jpg', 'man-8078578.jpg', 'jpg', 1024, 768, 203261, 85, 'man-8078578jpg-20', '2025-12-31T05:08:21.105323+00:00'::timestamptz, '2025-12-31T05:08:21.105350+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (50, 'man-8078578.jpg', 'processed/2dbd1030-7450-4680-a11a-e34c71e1e69a.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 174262, 85, 'man-8078578jpg-21', '2025-12-31T05:08:29.716880+00:00'::timestamptz, '2025-12-31T05:08:29.716902+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (51, 'man-8078578.jpg', 'processed/cf71c4c7-6b55-4a81-bee9-766969993940.png', 'man-8078578.jpg', 'man-8078578.jpg', 'png', 1024, 768, 922822, 85, 'man-8078578jpg-22', '2025-12-31T05:08:34.729310+00:00'::timestamptz, '2025-12-31T05:08:34.729415+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (52, 'man-8078578.jpg', 'processed/73f46f57-a671-43ca-b55f-45029dbe8683.avif', 'man-8078578.jpg', 'man-8078578.jpg', 'avif', 1024, 768, 170509, 85, 'man-8078578jpg-23', '2025-12-31T05:08:39.768289+00:00'::timestamptz, '2025-12-31T05:08:39.768325+00:00'::timestamptz, true, true);
INSERT INTO "images" ("id", "title", "path", "processed_path", "original_filename", "format", "width", "height", "size", "quality", "slug", "created_at", "updated_at", "is_active", "is_front") VALUES (53, 'man-8078578.jpg', 'processed/6bf75ab5-914f-4c8d-bfcc-1c10d8dea34a.webp', 'man-8078578.jpg', 'man-8078578.jpg', 'webp', 1024, 768, 174262, 85, 'man-8078578jpg-24', '2025-12-31T17:32:59.698645+00:00'::timestamptz, '2025-12-31T17:32:59.698747+00:00'::timestamptz, true, true);
-- Table: json_to_type
DROP TABLE IF EXISTS "json_to_type" CASCADE;
CREATE TABLE "json_to_type" (
"id" BIGSERIAL,
"title" VARCHAR(254) NOT NULL,
"json_data" JSONB NOT NULL,
"type_data" TEXT NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"is_active" BOOLEAN NOT NULL,
"user_id" BIGINT NOT NULL
);
-- Data for table: json_to_type
INSERT INTO "json_to_type" ("id", "title", "json_data", "type_data", "created_at", "updated_at", "is_active", "user_id") VALUES (1, 'Setting', '{
"user":""
}', 'export interface Setting {
user: string;
}', '2025-12-31T03:01:38.458401+00:00'::timestamptz, '2025-12-31T03:01:38.458425+00:00'::timestamptz, false, 2);
INSERT INTO "json_to_type" ("id", "title", "json_data", "type_data", "created_at", "updated_at", "is_active", "user_id") VALUES (2, 'imagesUpload', '{
"id": 18,
"title": "dfgdfgdfgdf",
"path": "processed/e503d0c9-8509-4022-a335-4521655e6a7a.webp",
"processed_path": "man-8078578.jpg",
"original_filename": "man-8078578.jpg",
"format": "webp",
"width": 100,
"height": 120,
"size": 3236,
"quality": 85,
"slug": "dfgdfgdfgdf",
"created_at": "2025-12-31T02:56:21.231264Z",
"updated_at": "2025-12-31T02:56:21.231296Z",
"is_active": true,
"is_front": true
}', 'export interface imagesUpload {
id: number;
title: string;
path: string;
processed_path: string;
original_filename: string;
format: string;
width: number;
height: number;
size: number;
quality: number;
slug: string;
created_at: string;
updated_at: string;
is_active: boolean;
is_front: boolean;
}', '2025-12-31T03:29:42.536487+00:00'::timestamptz, '2025-12-31T03:57:02.145557+00:00'::timestamptz, true, 2);
INSERT INTO "json_to_type" ("id", "title", "json_data", "type_data", "created_at", "updated_at", "is_active", "user_id") VALUES (3, 'dsfsdf', '{}', 'export interface MyTypeasdad {
}', '2025-12-31T15:19:12.784030+00:00'::timestamptz, '2025-12-31T15:19:12.784047+00:00'::timestamptz, false, 2);
-- Table: posts
DROP TABLE IF EXISTS "posts" CASCADE;
CREATE TABLE "posts" (
"id" BIGSERIAL,
"title" VARCHAR(254) NOT NULL,
"content" TEXT,
"keywords" VARCHAR(254) NOT NULL,
"image" VARCHAR(100),
"video" VARCHAR(254),
"slug" VARCHAR(250) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"is_active" BOOLEAN NOT NULL,
"is_front" BOOLEAN NOT NULL,
"parent_id" BIGINT,
"thumb" VARCHAR(100)
);
-- Data for table: posts
INSERT INTO "posts" ("id", "title", "content", "keywords", "image", "video", "slug", "created_at", "updated_at", "is_active", "is_front", "parent_id", "thumb") VALUES (4, 'Ubuntu', 'Ubuntu', 'Ubuntu', 'uploads/post/347670c277b94891b5b38697452ab835.avif', 'none', 'ubuntu', '2026-01-02T23:58:28.717897+00:00'::timestamptz, '2026-01-02T23:58:28.717914+00:00'::timestamptz, true, true, NULL, 'uploads/post/thumb/39a1710e813749e78dcd5c09185f53b9.avif');
INSERT INTO "posts" ("id", "title", "content", "keywords", "image", "video", "slug", "created_at", "updated_at", "is_active", "is_front", "parent_id", "thumb") VALUES (5, 'Debian', 'Debian', 'Debian', 'uploads/post/adf3e434a17f44b38ae1711128b637d4.avif', 'none', 'debian', '2026-01-02T23:59:26.968381+00:00'::timestamptz, '2026-01-02T23:59:26.968406+00:00'::timestamptz, true, true, NULL, 'uploads/post/thumb/b14552c5c7a64d119924c1399812e797.avif');
-- Table: posts_categories
DROP TABLE IF EXISTS "posts_categories" CASCADE;
CREATE TABLE "posts_categories" (
"id" BIGSERIAL,
"post_id" BIGINT NOT NULL,
"category_id" BIGINT NOT NULL
);
-- Data for table: posts_categories
INSERT INTO "posts_categories" ("id", "post_id", "category_id") VALUES (4, 4, 2);
INSERT INTO "posts_categories" ("id", "post_id", "category_id") VALUES (5, 5, 3);
-- Table: posts_tags
DROP TABLE IF EXISTS "posts_tags" CASCADE;
CREATE TABLE "posts_tags" (
"id" BIGSERIAL,
"post_id" BIGINT NOT NULL,
"tags_id" BIGINT NOT NULL
);
-- Data for table: posts_tags
INSERT INTO "posts_tags" ("id", "post_id", "tags_id") VALUES (4, 4, 2);
INSERT INTO "posts_tags" ("id", "post_id", "tags_id") VALUES (5, 5, 1);
INSERT INTO "posts_tags" ("id", "post_id", "tags_id") VALUES (6, 5, 3);
-- Table: settings
DROP TABLE IF EXISTS "settings" CASCADE;
CREATE TABLE "settings" (
"id" BIGSERIAL,
"title" VARCHAR(254) NOT NULL,
"meta_title" VARCHAR(254) NOT NULL,
"meta_description" VARCHAR(254) NOT NULL,
"phone" VARCHAR(254) NOT NULL,
"url" VARCHAR(254),
"email" VARCHAR(254) NOT NULL,
"facebook" VARCHAR(254),
"x" VARCHAR(254),
"instagram" VARCHAR(254),
"whatsapp" VARCHAR(254),
"slogan" VARCHAR(254),
"w_logo" VARCHAR(100),
"b_logo" VARCHAR(100),
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"is_active" BOOLEAN NOT NULL
);
-- Data for table: settings
INSERT INTO "settings" ("id", "title", "meta_title", "meta_description", "phone", "url", "email", "facebook", "x", "instagram", "whatsapp", "slogan", "w_logo", "b_logo", "created_at", "updated_at", "is_active") VALUES (1, 'Beyhan Oğur Kişisel Web Sitesi', 'Meta Title', 'Meta Description', '+90 (500) 222 44 64', 'https://beyhanogur.com.tr', 'admin@demo.com', 'https://www.facebook.com', 'https://www.x.com', 'https://www.instagram.com', 'https://www.whatsapp.com', 'Beyhan Site Başlık Solaganı', 'uploads/logo/bg.png', 'uploads/logo/bg_jsYKjv5.png', '2025-12-30T18:55:38.870973+00:00'::timestamptz, '2025-12-30T19:09:45.593096+00:00'::timestamptz, true);
-- Table: social_auth_association
DROP TABLE IF EXISTS "social_auth_association" CASCADE;
CREATE TABLE "social_auth_association" (
"id" BIGSERIAL,
"server_url" VARCHAR(255) NOT NULL,
"handle" VARCHAR(255) NOT NULL,
"secret" VARCHAR(255) NOT NULL,
"issued" INTEGER NOT NULL,
"lifetime" INTEGER NOT NULL,
"assoc_type" VARCHAR(64) NOT NULL
);
-- Table: social_auth_code
DROP TABLE IF EXISTS "social_auth_code" CASCADE;
CREATE TABLE "social_auth_code" (
"id" BIGSERIAL,
"email" VARCHAR(254) NOT NULL,
"code" VARCHAR(32) NOT NULL,
"verified" BOOLEAN NOT NULL,
"timestamp" TIMESTAMP WITH TIME ZONE NOT NULL
);
-- Table: social_auth_nonce
DROP TABLE IF EXISTS "social_auth_nonce" CASCADE;
CREATE TABLE "social_auth_nonce" (
"id" BIGSERIAL,
"server_url" VARCHAR(255) NOT NULL,
"timestamp" INTEGER NOT NULL,
"salt" VARCHAR(65) NOT NULL
);
-- Table: social_auth_partial
DROP TABLE IF EXISTS "social_auth_partial" CASCADE;
CREATE TABLE "social_auth_partial" (
"id" BIGSERIAL,
"token" VARCHAR(32) NOT NULL,
"next_step" SMALLINT NOT NULL,
"backend" VARCHAR(32) NOT NULL,
"timestamp" TIMESTAMP WITH TIME ZONE NOT NULL,
"data" JSONB NOT NULL
);
-- Table: social_auth_usersocialauth
DROP TABLE IF EXISTS "social_auth_usersocialauth" CASCADE;
CREATE TABLE "social_auth_usersocialauth" (
"id" BIGSERIAL,
"provider" VARCHAR(32) NOT NULL,
"uid" VARCHAR(255) NOT NULL,
"user_id" BIGINT NOT NULL,
"created" TIMESTAMP WITH TIME ZONE NOT NULL,
"modified" TIMESTAMP WITH TIME ZONE NOT NULL,
"extra_data" JSONB NOT NULL
);
-- Table: tags
DROP TABLE IF EXISTS "tags" CASCADE;
CREATE TABLE "tags" (
"id" BIGSERIAL,
"tag" VARCHAR(254) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"updated_at" TIMESTAMP WITH TIME ZONE NOT NULL,
"is_active" BOOLEAN NOT NULL
);
-- Data for table: tags
INSERT INTO "tags" ("id", "tag", "created_at", "updated_at", "is_active") VALUES (1, 'linux', '2026-01-02T23:29:58.464268+00:00'::timestamptz, '2026-01-02T23:29:58.464283+00:00'::timestamptz, true);
INSERT INTO "tags" ("id", "tag", "created_at", "updated_at", "is_active") VALUES (2, 'Ubuntu', '2026-01-02T23:58:13.208638+00:00'::timestamptz, '2026-01-02T23:58:13.208655+00:00'::timestamptz, true);
INSERT INTO "tags" ("id", "tag", "created_at", "updated_at", "is_active") VALUES (3, 'Debian', '2026-01-02T23:59:10.955258+00:00'::timestamptz, '2026-01-02T23:59:10.955285+00:00'::timestamptz, true);
-- Reset sequences
SELECT setval('django_migrations_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "django_migrations"));
SELECT setval('django_content_type_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "django_content_type"));
SELECT setval('auth_permission_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "auth_permission"));
SELECT setval('auth_group_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "auth_group"));
SELECT setval('auth_group_permissions_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "auth_group_permissions"));
SELECT setval('accounts_customuser_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "accounts_customuser"));
SELECT setval('accounts_customuser_groups_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "accounts_customuser_groups"));
SELECT setval('accounts_customuser_user_permissions_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "accounts_customuser_user_permissions"));
SELECT setval('django_admin_log_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "django_admin_log"));
SELECT setval('backup_databasebackup_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "backup_databasebackup"));
SELECT setval('tags_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "tags"));
SELECT setval('categories_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "categories"));
SELECT setval('posts_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "posts"));
SELECT setval('posts_categories_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "posts_categories"));
SELECT setval('posts_tags_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "posts_tags"));
SELECT setval('category_views_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "category_views"));
SELECT setval('comments_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "comments"));
SELECT setval('banners_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "banners"));
SELECT setval('settings_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "settings"));
SELECT setval('django_site_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "django_site"));
SELECT setval('social_auth_association_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "social_auth_association"));
SELECT setval('social_auth_code_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "social_auth_code"));
SELECT setval('social_auth_nonce_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "social_auth_nonce"));
SELECT setval('social_auth_usersocialauth_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "social_auth_usersocialauth"));
SELECT setval('social_auth_partial_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "social_auth_partial"));
SELECT setval('json_to_type_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "json_to_type"));
SELECT setval('images_id_seq', (SELECT COALESCE(MAX("id"), 1) FROM "images"));