mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
-Postgres for production -Migrations don't translate well between sqlite and postgres, better to just develop using the same database as production. -Fixed migrations to work with Postgres -Updated Readme for PG install instructions -database config moved to .example
6 lines
106 B
Ruby
6 lines
106 B
Ruby
class RemoveNickname < ActiveRecord::Migration
|
|
def change
|
|
remove_column :users, :nickname
|
|
end
|
|
end
|