Schema and basic migraton for "package" table added
This commit is contained in:
parent
d9573fd208
commit
8df03296e9
2 changed files with 78 additions and 0 deletions
7
db/migrate/20130726224319_create_packages.rb
Normal file
7
db/migrate/20130726224319_create_packages.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class CreatePackages < ActiveRecord::Migration
|
||||
def change
|
||||
change_table :packages do |t|
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
71
db/schema.rb
Normal file
71
db/schema.rb
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
# encoding: UTF-8
|
||||
# This file is auto-generated from the current state of the database. Instead
|
||||
# of editing this file, please use the migrations feature of Active Record to
|
||||
# incrementally modify your database, and then regenerate this schema definition.
|
||||
#
|
||||
# Note that this schema.rb definition is the authoritative source for your
|
||||
# database schema. If you need to create the application database on another
|
||||
# system, you should be using db:schema:load, not running all the migrations
|
||||
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
||||
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20130726224319) do
|
||||
|
||||
create_table "admins", force: true do |t|
|
||||
t.string "username", limit: 20
|
||||
t.string "passwordhash", limit: 32
|
||||
end
|
||||
|
||||
add_index "admins", ["username"], name: "admins_username_key", unique: true, using: :btree
|
||||
|
||||
create_table "debtags", force: true do |t|
|
||||
t.string "tag", limit: 50
|
||||
t.string "description", limit: 1000
|
||||
t.string "facet", limit: 50
|
||||
t.string "facet_description", limit: 1000
|
||||
end
|
||||
|
||||
add_index "debtags", ["tag"], name: "ix_debtags_tag", using: :btree
|
||||
|
||||
create_table "packages", force: true do |t|
|
||||
t.string "name", limit: 100
|
||||
t.string "description", limit: 80
|
||||
t.string "section", limit: 50
|
||||
t.string "maintainer", limit: 100
|
||||
t.string "maintainer_email", limit: 100
|
||||
t.string "homepage", limit: 200
|
||||
t.string "version", limit: 200
|
||||
t.string "long_description", limit: 2000
|
||||
t.string "origin", limit: 80
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
add_index "packages", ["name"], name: "packages_name_key", unique: true, using: :btree
|
||||
|
||||
create_table "packages_to_debtags", id: false, force: true do |t|
|
||||
t.integer "package_id"
|
||||
t.integer "debtag_id"
|
||||
end
|
||||
|
||||
add_index "packages_to_debtags", ["debtag_id"], name: "ix_packages_to_debtags_debtag_id", using: :btree
|
||||
add_index "packages_to_debtags", ["package_id"], name: "ix_packages_to_debtags_package_id", using: :btree
|
||||
|
||||
create_table "screenshots", force: true do |t|
|
||||
t.integer "package_id"
|
||||
t.string "version", limit: 50
|
||||
t.datetime "uploaddatetime"
|
||||
t.string "uploaderhash", limit: 72
|
||||
t.string "uploaderip", limit: 15
|
||||
t.boolean "approved"
|
||||
t.boolean "markedfordelete"
|
||||
t.string "delete_reason", limit: 100
|
||||
t.string "description", limit: 40
|
||||
end
|
||||
|
||||
add_index "screenshots", ["id", "approved"], name: "id_approved", using: :btree
|
||||
add_index "screenshots", ["id", "uploaderhash"], name: "id_uploaderhash", using: :btree
|
||||
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue