init database

This commit is contained in:
2019-03-16 17:00:13 +01:00
parent d8f23dcdc5
commit f4ba6ca55e
13 changed files with 336 additions and 0 deletions

View File

@@ -101,9 +101,22 @@
<Compile Include="App_Start\Bootstrapper.cs" />
<Compile Include="App_Start\WebApiConfig.cs" />
<Compile Include="Controllers\ValuesController.cs" />
<Compile Include="Database\DataContext.cs" />
<Compile Include="Database\Model\Access.cs" />
<Compile Include="Database\Model\Change.cs" />
<Compile Include="Database\Model\File.cs" />
<Compile Include="Database\Model\FileType.cs" />
<Compile Include="Database\Model\Song.cs" />
<Compile Include="Database\Model\SongType.cs" />
<Compile Include="Database\Model\User.cs" />
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="Migrations\201903161558469_Init.cs" />
<Compile Include="Migrations\201903161558469_Init.Designer.cs">
<DependentUpon>201903161558469_Init.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\Configuration.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
@@ -123,6 +136,11 @@
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Migrations\201903161558469_Init.resx">
<DependentUpon>201903161558469_Init.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>

View File

@@ -0,0 +1,11 @@
using API.Database.Model;
using System.Data.Entity;
namespace API.Database {
public class DataContext : DbContext {
public DbSet<Song> Songs { get; set; }
public DbSet<Change> Changes { get; set; }
public DbSet<File> Files { get; set; }
public DbSet<User> Users { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace API.Database.Model {
public enum Access {
Inactive,
Reader,
Writer,
Admin
}
}

View File

@@ -0,0 +1,11 @@
using System;
namespace API.Database.Model {
public class Change {
public int ID { get; set; }
public int UserId { get; set; }
public User User { get; set; }
public DateTime Date { get; set; }
public string Comment { get; set; }
}
}

View File

@@ -0,0 +1,10 @@
using System;
namespace API.Database.Model {
public class File {
public int ID { get; set; }
public Guid ReferenceFile { get; set; }
public string Name { get; set; }
public FileType FileType { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace API.Database.Model {
public enum FileType {
None,
Sheet,
Chords,
MuseScore
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace API.Database.Model {
public class Song {
public int ID { get; set; }
public string Name { get; set; }
public string Text { get; set; }
public string Comments { get; set; }
public string Key { get; set; }
public int? Tempo { get; set; }
public SongType SongType { get; set; }
public bool Final { get; set; }
public virtual ICollection<Change> Changes { get; set; }
}
}

View File

@@ -0,0 +1,7 @@
namespace API.Database.Model {
public enum SongType {
Praise,
Worship
}
}

View File

@@ -0,0 +1,11 @@
namespace API.Database.Model {
public class User {
public int ID { get; set; }
public string Account { get; set; }
public string Pass { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public string Email { get; set; }
public Access Access { get; set; }
}
}

View File

@@ -0,0 +1,29 @@
// <auto-generated />
namespace API.Migrations
{
using System.CodeDom.Compiler;
using System.Data.Entity.Migrations;
using System.Data.Entity.Migrations.Infrastructure;
using System.Resources;
[GeneratedCode("EntityFramework.Migrations", "6.2.0-61023")]
public sealed partial class Init : IMigrationMetadata
{
private readonly ResourceManager Resources = new ResourceManager(typeof(Init));
string IMigrationMetadata.Id
{
get { return "201903161558469_Init"; }
}
string IMigrationMetadata.Source
{
get { return null; }
}
string IMigrationMetadata.Target
{
get { return Resources.GetString("Target"); }
}
}
}

View File

@@ -0,0 +1,71 @@
namespace API.Migrations {
using System.Data.Entity.Migrations;
public partial class Init : DbMigration {
public override void Up() {
CreateTable(
"dbo.Changes",
c => new {
ID = c.Int(nullable: false, identity: true),
UserId = c.Int(nullable: false),
Date = c.DateTime(nullable: false),
Comment = c.String(),
Song_ID = c.Int(),
})
.PrimaryKey(t => t.ID)
.ForeignKey("dbo.Users", t => t.UserId, cascadeDelete: true)
.ForeignKey("dbo.Songs", t => t.Song_ID)
.Index(t => t.UserId)
.Index(t => t.Song_ID);
CreateTable(
"dbo.Users",
c => new {
ID = c.Int(nullable: false, identity: true),
Account = c.String(),
Pass = c.String(),
Name = c.String(),
Surname = c.String(),
Email = c.String(),
Access = c.Int(nullable: false),
})
.PrimaryKey(t => t.ID);
CreateTable(
"dbo.Files",
c => new {
ID = c.Int(nullable: false, identity: true),
ReferenceFile = c.Guid(nullable: false),
Name = c.String(),
FileType = c.Int(nullable: false),
})
.PrimaryKey(t => t.ID);
CreateTable(
"dbo.Songs",
c => new {
ID = c.Int(nullable: false, identity: true),
Name = c.String(),
Text = c.String(),
Comments = c.String(),
Key = c.String(),
Tempo = c.Int(),
SongType = c.Int(nullable: false),
Final = c.Boolean(nullable: false),
})
.PrimaryKey(t => t.ID);
}
public override void Down() {
DropForeignKey("dbo.Changes", "Song_ID", "dbo.Songs");
DropForeignKey("dbo.Changes", "UserId", "dbo.Users");
DropIndex("dbo.Changes", new[] { "Song_ID" });
DropIndex("dbo.Changes", new[] { "UserId" });
DropTable("dbo.Songs");
DropTable("dbo.Files");
DropTable("dbo.Users");
DropTable("dbo.Changes");
}
}
}

View File

@@ -0,0 +1,126 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Target" xml:space="preserve">
<value>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</value>
</data>
<data name="DefaultSchema" xml:space="preserve">
<value>dbo</value>
</data>
</root>

View File

@@ -0,0 +1,9 @@
namespace API.Migrations {
using System.Data.Entity.Migrations;
internal sealed class Configuration : DbMigrationsConfiguration<Database.DataContext> {
public Configuration() {
AutomaticMigrationsEnabled = false;
}
}
}