Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
15
db/migrate/013_create_queries.rb
Normal file
15
db/migrate/013_create_queries.rb
Normal file
|
@ -0,0 +1,15 @@
|
|||
class CreateQueries < ActiveRecord::Migration
|
||||
def self.up
|
||||
create_table :queries, :force => true do |t|
|
||||
t.column "project_id", :integer
|
||||
t.column "name", :string, :default => "", :null => false
|
||||
t.column "filters", :text
|
||||
t.column "user_id", :integer, :default => 0, :null => false
|
||||
t.column "is_public", :boolean, :default => false, :null => false
|
||||
end
|
||||
end
|
||||
|
||||
def self.down
|
||||
drop_table :queries
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue