Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
commit the db migrate file required for new property on organizations…
Browse files Browse the repository at this point in the history
…, and make the logo image responsive
  • Loading branch information
weiweishi committed Nov 25, 2015
1 parent 9aeb844 commit fe4f4c0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/portage-custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ body.dmponline{
width: 100%
}
.home_logo {
width: 380px;
width: 60%;
margin-right: 0px;
margin-top: -8px;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddDisplayInRegistrationToOrganisation < ActiveRecord::Migration
def change
add_column :organisations, :display_in_registration, :boolean
end
end
7 changes: 4 additions & 3 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20151009021510) do
ActiveRecord::Schema.define(:version => 20151124233804) do

create_table "answers", :force => true do |t|
t.text "text"
Expand Down Expand Up @@ -177,13 +177,14 @@
t.string "domain"
t.integer "wayfless_entity"
t.integer "stylesheet_file_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.integer "parent_id"
t.boolean "is_other"
t.string "sort_name"
t.text "banner_text"
t.string "logo_file_name"
t.boolean "display_in_registration"
end

create_table "phase_translations", :force => true do |t|
Expand Down

0 comments on commit fe4f4c0

Please sign in to comment.