Difference between revisions of "User:Woozle/PostFerret/sql/post"
< User:Woozle | PostFerret | sql
Jump to navigation
Jump to search
(tweaks) |
|||
Line 2: | Line 2: | ||
* '''Purpose''': an atom with a little bit of content and possibly an owner | * '''Purpose''': an atom with a little bit of content and possibly an owner | ||
** '''ID_Owner''': ID of user who owns this atom. | ** '''ID_Owner''': ID of user who owns this atom. | ||
− | *** Some | + | *** Some post types will not have owners, but this needs to be here so it can be part of the unique key. We don't want to prevent different users from using the same Summary. |
* '''Fields''': | * '''Fields''': | ||
− | ** '''URI''': I haven't yet decided if this really belongs here, but it could be used for either: | + | ** '''URI''': I haven't yet decided if this really belongs here or how to formally define it, but it could be used for either: |
*** a page on the site which is set aside for more information about the given post | *** a page on the site which is set aside for more information about the given post | ||
*** the post's official URI on the site | *** the post's official URI on the site |
Revision as of 01:12, 16 March 2013
About
- Purpose: an atom with a little bit of content and possibly an owner
- ID_Owner: ID of user who owns this atom.
- Some post types will not have owners, but this needs to be here so it can be part of the unique key. We don't want to prevent different users from using the same Summary.
- ID_Owner: ID of user who owns this atom.
- Fields:
- URI: I haven't yet decided if this really belongs here or how to formally define it, but it could be used for either:
- a page on the site which is set aside for more information about the given post
- the post's official URI on the site
- URI: I haven't yet decided if this really belongs here or how to formally define it, but it could be used for either:
- History:
SQL
<mysql> CREATE TABLE `sign` (
`ID_Atom` INT NOT NULL COMMENT "ID of atom this sign is using", `ID_Owner` INT NOT NULL COMMENT "optional: ID of user who owns this sign", `Summary` VARCHAR(255) NOT NULL COMMENT "short description, for listings", `URI` VARCHAR(255) DEFAULT NULL COMMENT "optional site-relative URI for more information", PRIMARY KEY(`ID_Atom`), UNIQUE KEY `content` (`ID_Owner`,`Summary`) ) ENGINE = MYISAM;
</mysql>