Browse Source

Pages mysql schema to structure

Vova Tkach 6 years ago
parent
commit
cbf5a7c4ed
1 changed files with 14 additions and 0 deletions
  1. 14 0
      utils/mysql_struct_pages.go

+ 14 - 0
utils/mysql_struct_pages.go

@@ -0,0 +1,14 @@
+package utils
+
+type MySql_page struct {
+	A_id               int
+	A_user             int
+	A_name             string
+	A_alias            string
+	A_content          string
+	A_meta_title       string
+	A_meta_keywords    string
+	A_meta_description string
+	A_datetime         int
+	A_status           int
+}