Custo totem ++
* parralax.js: refactoring * drummer-652345_1280.xxs.jpg: * musician-923526_1280.xxs.jpg: * live-concert-388160_1280.xxs.jpg: totem style * Makefile: cleaner code * style.css: -> Totem * BlogsController.cs: Fixes edition validation * App.master: externalize the parralax javascript code, finishes the merge from yavsc * UserPosts.aspx: Affiche "pas de contenu" quand aucun post n'est à afficher * Web.csproj: Totem images * instdbws.sql: Header images
This commit is contained in:
parent
8042031871
commit
40a49f5284
14 changed files with 177 additions and 168 deletions
|
|
@ -728,3 +728,23 @@ WITH (
|
|||
OIDS=FALSE
|
||||
);
|
||||
|
||||
-- Table: postheader
|
||||
|
||||
-- DROP TABLE postheader;
|
||||
|
||||
CREATE TABLE postheader
|
||||
(
|
||||
postid bigserial NOT NULL, -- Blog post identifier, to which will be associated this head image
|
||||
url character varying(512), -- Url for this header image,...
|
||||
CONSTRAINT postheader_pkey PRIMARY KEY (postid),
|
||||
CONSTRAINT postheader_postid_fkey FOREIGN KEY (postid)
|
||||
REFERENCES blog (_id) MATCH SIMPLE
|
||||
ON UPDATE CASCADE ON DELETE CASCADE
|
||||
)
|
||||
WITH (
|
||||
OIDS=FALSE
|
||||
);
|
||||
COMMENT ON COLUMN postheader.postid IS 'Blog post identifier, to which will be associated this head image';
|
||||
COMMENT ON COLUMN postheader.url IS 'Url for this header image, if relative, it will be on the path "~/bfiles/<postid>"';
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue