Re: [sqlite] how to Add a Table in the existing Sqlite database at client machine

2011-08-22 Thread Jack Hughes
Using Fluent Migrator project you write the following class... [Migration(201101011411)] public class Version_002 : FluentMigrator.Migration { public override void Up() { Create.Column("ColumnName").OnTable("TableName").AsInt32().Nullable(); }

[sqlite] how to Add a Table in the existing Sqlite database at client machine

2011-08-22 Thread Madhan Kumar
I, I am using C# windows application(.Net2010) with sqlite, Can you pls let me know, how to add or modify a new column/ table in the existing Sqlite database that is in my client desktop machine. I want the existing database to have its data(not disturbed), and only add a new table/column. Is