emencia / emencia-django-slideshows

A Django application to make slideshows
MIT License
5 stars 7 forks source link

Boolean choice to publish/unpublish #1

Closed sveetch closed 11 years ago

sveetch commented 11 years ago

Add a new Slide model field "publish" that will be a boolean field to select if the item will be published or not.

This is a better solution than the "priority=0" behavior.

sveetch commented 11 years ago

Done in 0.5.0, with commit 12b2956

For previous installed databases, you should use something like that to update the Slide model table :

ALTER TABLE 'slideshows_slide' ADD COLUMN "publish" bool NOT NULL DEFAULT 1;