removed 20121203225613_add_arranged_to_map.rb
This commit is contained in:
parent
698690effd
commit
baaa746a47
4 changed files with 93 additions and 90 deletions
|
@ -29,10 +29,21 @@ line-height: 24px;}
|
||||||
|
|
||||||
.item .icon { position:absolute; top:135px; left:-25px; }
|
.item .icon { position:absolute; top:135px; left:-25px; }
|
||||||
|
|
||||||
.item .title { font-size:22px; line-height:25px; display:block; border-bottom:2px solid #000; padding-bottom:5px; }
|
.item .title {
|
||||||
|
font-size:22px;
|
||||||
|
line-height:25px;
|
||||||
|
display:block;
|
||||||
|
border-bottom:2px solid #000;
|
||||||
|
padding-bottom:5px;
|
||||||
|
}
|
||||||
|
|
||||||
.item .desc { font-size:15px; font-family:Arial, Helvetica, sans-serif; }
|
.item .desc { font-size:15px; font-family:Arial, Helvetica, sans-serif; }
|
||||||
.item .desc h3 { font-style:normal; margin-top:5px; }
|
.item .desc h3 { font-style:normal; margin-top:5px; }
|
||||||
|
|
||||||
.item .link { position:absolute; width:170px; top:295px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
.item .link { position:absolute; width:170px; top:295px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
||||||
|
|
||||||
|
.item .add-synapse {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 48%;
|
||||||
|
right: 0.3em;
|
||||||
|
}
|
||||||
|
|
|
@ -6,8 +6,6 @@ development:
|
||||||
encoding: unicode
|
encoding: unicode
|
||||||
database: metamap002_development
|
database: metamap002_development
|
||||||
pool: 5
|
pool: 5
|
||||||
username: postgres
|
|
||||||
password: "3112"
|
|
||||||
|
|
||||||
production:
|
production:
|
||||||
min_messages: WARNING
|
min_messages: WARNING
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
class AddArrangedToMap < ActiveRecord::Migration
|
|
||||||
def change
|
|
||||||
add_column :maps, :arranged, :boolean
|
|
||||||
Map.update_all ["arranged = ?", false]
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended to check this file into your version control system.
|
# It's strongly recommended to check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(:version => 20121203225613) do
|
ActiveRecord::Schema.define(:version => 20121026000731) do
|
||||||
|
|
||||||
create_table "item_categories", :force => true do |t|
|
create_table "item_categories", :force => true do |t|
|
||||||
t.text "name"
|
t.text "name"
|
||||||
|
@ -45,12 +45,12 @@ ActiveRecord::Schema.define(:version => 20121203225613) do
|
||||||
|
|
||||||
create_table "maps", :force => true do |t|
|
create_table "maps", :force => true do |t|
|
||||||
t.text "name"
|
t.text "name"
|
||||||
|
t.boolean "arranged"
|
||||||
t.text "desc"
|
t.text "desc"
|
||||||
t.text "permission"
|
t.text "permission"
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
t.datetime "created_at", :null => false
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at", :null => false
|
t.datetime "updated_at", :null => false
|
||||||
t.boolean "arranged"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "synapses", :force => true do |t|
|
create_table "synapses", :force => true do |t|
|
||||||
|
|
Loading…
Reference in a new issue