Home > Article > Backend Development > The most important four types of tables in DedeCMS, dedecms four types of tables_PHP tutorial
column (category): dede_arctype (dede database designer believes: no matter you are What kind of data is stored (software, products, movies...) should belong to a certain column (type))
Content master table: dede_archives (The designers of the DreamWeaver database believe that all content pages will have the same fields)
Content attachment table dede_addonXXX(The designer of Dreamweaver Database believes that all content will have different fields)
Column model: dede_channeltype (The designer of DreamWeaver Database believes that no matter what data it is, it should be a certain channel (model))
(Compiled from the secondary development of DEDECMS taught by Teacher Han Shunping)
Nowadays, there is no classification of four or one categories. That was in the 1990s, when light industry was graded
Now that brand manufacturers have undergone drastic changes, it is difficult to follow that
The main table in dede is dede_archives, such as (if the prefix of your data table has been changed, replace dede with the prefix of your own table) additional tables of different models are generally named like this: dede_addon+model name, such as: article append Table - dede_addonarticle, image attachment table - dede_addonimages, etc. The names of some other tables also have certain meanings, such as: dede_flink is a table for data related to friendly links, dede_member is a table for storing data related to members, etc. If you have time, take a closer look at the structure and content of these tables. In fact, they are regular and relatively easy to understand.