fix migrations, acceptance testing for auth, 32 char username limit

This commit is contained in:
Kyle Drake 2014-04-01 16:34:53 -07:00
parent fdd4017523
commit 5dfc715148
No known key found for this signature in database
GPG key ID: 8BE721072E1864BE
18 changed files with 247 additions and 125 deletions

View file

@ -4,6 +4,6 @@ Sequel.migration do
}
down {
DB.add_column :sites, :hits
DB.drop_column :sites, :hits
}
end

View file

@ -4,6 +4,6 @@ Sequel.migration do
}
down {
DB.add_column :sites, :is_admin
DB.drop_column :sites, :is_admin
}
end

View file

@ -4,6 +4,6 @@ Sequel.migration do
}
down {
DB.add_column :sites, :is_banned
DB.drop_column :sites, :is_banned
}
end

View file

@ -4,6 +4,6 @@ Sequel.migration do
}
down {
DB.add_column :sites, :ip
DB.drop_column :sites, :ip
}
end

View file

@ -6,6 +6,5 @@ Sequel.migration do
down {
DB.drop_column :sites, :password_reset_token
DB.drop_index :sites, :password_reset_token
}
end

View file

@ -6,6 +6,5 @@ Sequel.migration do
down {
DB.drop_column :sites, :site_changed
DB.drop_index :sites, :site_changed
}
end

View file

@ -6,6 +6,5 @@ Sequel.migration do
down {
DB.drop_column :sites, :changed_count
DB.drop_index :sites, :changed_count
}
end