Alexandre Forget wrote:
> I wonder what people are using *right now* to evolve their data ?
>
> I'm using this:
>
> # create a fixture with all data in the current db
> python manage.py dumpdata --indent=4 > initial_data.json
>
> # delete de database
> rm db.sqlite
>
> # edit the model
>
> #
On 9/23/07, Alex Koshelev <[EMAIL PROTECTED]> wrote:
> There is limited functionality for ALTER in sqlite
Which is why I only use PostgreSQL.
--
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."
--~--~-~--~~~---~--~~
You received thi
There is limited functionality for ALTER in sqlite
On 23 сент, 09:19, "James Bennett" <[EMAIL PROTECTED]> wrote:
> On 9/22/07, Alexandre Forget <[EMAIL PROTECTED]> wrote:
>
> > I wonder what people are using *right now* to evolve their data ?
>
> ALTER TABLE.
>
> No, really ;)
>
> --
> "Bureaucra
There is some schema-evolution tools but they are not stable. Use the
search for this group.
On 23 сент, 08:55, "Alexandre Forget" <[EMAIL PROTECTED]> wrote:
> I wonder what people are using *right now* to evolve their data ?
>
> I'm using this:
>
> # create a fixture with all data in the current
On 9/22/07, Alexandre Forget <[EMAIL PROTECTED]> wrote:
> I wonder what people are using *right now* to evolve their data ?
ALTER TABLE.
No, really ;)
--
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."
--~--~-~--~~~---~--~~
You re
I wonder what people are using *right now* to evolve their data ?
I'm using this:
# create a fixture with all data in the current db
python manage.py dumpdata --indent=4 > initial_data.json
# delete de database
rm db.sqlite
# edit the model
# recreate db and reload data
manage syncdb --noinp
6 matches
Mail list logo