forked from bofh/fetsite
Prüfungsinformationen und Typ zu lva hinzugefügt
This commit is contained in:
6
db/migrate/20130811191150_add_pruefungsinfos_to_lvas.rb
Normal file
6
db/migrate/20130811191150_add_pruefungsinfos_to_lvas.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
class AddPruefungsinfosToLvas < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :lvas, :pruefungsinformation, :text
|
||||
add_column :lvas, :lernaufwand, :text
|
||||
end
|
||||
end
|
||||
5
db/migrate/20130812070544_add_typ_to_lvas.rb
Normal file
5
db/migrate/20130812070544_add_typ_to_lvas.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddTypToLvas < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :lvas, :typ, :string
|
||||
end
|
||||
end
|
||||
@@ -11,7 +11,7 @@
|
||||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20130811191150) do
|
||||
ActiveRecord::Schema.define(:version => 20130812070544) do
|
||||
|
||||
create_table "attachments", :force => true do |t|
|
||||
t.string "name"
|
||||
@@ -96,6 +96,7 @@ ActiveRecord::Schema.define(:version => 20130811191150) do
|
||||
t.integer "semester_id"
|
||||
t.text "pruefungsinformation"
|
||||
t.text "lernaufwand"
|
||||
t.string "typ"
|
||||
end
|
||||
|
||||
create_table "lvas_moduls", :id => false, :force => true do |t|
|
||||
|
||||
Reference in New Issue
Block a user