Skip to content

Commit

Permalink
Fixed lenght for account table address column. Fixes #498.
Browse files Browse the repository at this point in the history
  • Loading branch information
bonesoul committed Sep 29, 2014
1 parent 9019b7f commit b9f7bec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public override void Up()
Create.Table("Account")
.WithColumn("Id").AsInt32().NotNullable().PrimaryKey().Identity()
.WithColumn("Username").AsString().NotNullable().Unique()
.WithColumn("Address").AsString(32).NotNullable().Unique()
.WithColumn("Address").AsString(34).NotNullable().Unique()
.WithColumn("CreatedAt").AsDateTime().NotNullable();

// create the payout table.
Expand Down

0 comments on commit b9f7bec

Please sign in to comment.