Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
12
db/migrate/017_create_settings.rb
Normal file
12
db/migrate/017_create_settings.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class CreateSettings < ActiveRecord::Migration
|
||||
def self.up
|
||||
create_table :settings, :force => true do |t|
|
||||
t.column "name", :string, :limit => 30, :default => "", :null => false
|
||||
t.column "value", :text
|
||||
end
|
||||
end
|
||||
|
||||
def self.down
|
||||
drop_table :settings
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue